/* =====================================================
RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #f4f6f8;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================================
PALETA DO SITE
===================================================== */
:root {
    --azul-escuro: #0f2d4a;
    --azul-medio: #123a5c;
    --amarelo: #ffcc00;
    --laranja: #f28c28;
    --cinza-claro: #f4f6f8;
}

/* =====================================================
TOPO
===================================================== */
.topo {
    background: var(--amarelo);
    padding: 12px 0;
}

.topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: var(--azul-escuro);
}

.topo-info {
    text-align: right;
}

.telefone-destaque {
    font-size: 18px;
    font-weight: bold;
}

.botoes-topo a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

.btn-ligar { background: var(--azul-escuro); }
.btn-whats { background: #25D366; }

/* =====================================================
MENU DESKTOP
===================================================== */
.menu-principal {
    background: #0b2d4a; /* azul do site */
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 18px 22px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.menu a:hover {
    background: #ffcc00; /* amarelo da marca */
    color: #0b2d4a;
}

/* SETINHA */
.seta {
    font-size: 12px;
    margin-left: 6px;
}

/* SUBMENU */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b2d4a;
    min-width: 260px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 999;
}

.submenu li a {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.submenu li a:hover {
    background: #ffcc00;
    color: #0b2d4a;
}




/* =====================================================
HERO
===================================================== */
.hero {
    background: var(--amarelo);
    padding:70px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-texto h1 {
    font-size: 42px;
    color: var(--azul-escuro);
}

.hero-botoes {
    margin-top: 25px;
}

.hero-botoes a {
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-servicos {
    background: var(--azul-escuro);
    color: #fff;
}

.btn-orcamento {
    background: #fff;
    color: var(--azul-escuro);
    border: 2px solid var(--azul-escuro);
}

/* =====================================================
HOME INTRO
===================================================== */
.home-intro {
    text-align: center;
    padding: 60px 10%;
    background: #fff;
}

.linha {
    width: 120px;
    margin: 20px auto;
    border: 2px solid var(--laranja);
}

.titulo-laranja {
    color: var(--laranja);
}

/* =====================================================
ORÇAMENTO
===================================================== */
.orcamento-box {
    background: var(--azul-medio);
    color: #fff;
    text-align: center;
    padding: 40px 30px;
    margin: 60px auto;
    max-width: 900px;
    border-radius: 10px;
}

.orcamento-box a {
    color: var(--amarelo);
    font-weight: bold;
}

/* =====================================================
SERVIÇOS – CARD ORGANIZADO
===================================================== */

.servicos-container {
    padding: 80px 5%;
    background: #0f2d4a;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.card-servico {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.card-servico:hover {
    transform: translateY(-6px);
}

/* IMAGEM */
.card-servico img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* CARD SERVIÇOS */
.card-servico {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

/* TÍTULO FIXO AMARELO */
.card-servico h3 {
    background: #ffcc00;        /* AMARELO DO SITE */
    color: #002b55;             /* AZUL DO SITE */
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 10px;
    margin: 0;
    text-align: center;
}

}


/* DESCRIÇÃO ABAIXO DO TÍTULO AMARELO (SERVIÇOS) */
.card-servico p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 800;              /* NEGRITO REAL */
    color: #111111;                /* PRETO MAIS FORTE */
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 16px 20px;
}


/* ======================================================
   FOOTER – PARTE AMARELA (3 COLUNAS LADO A LADO)
====================================================== */

.footer-top {
    background: #FFC72C; /* amarelo forte da marca */
    padding: 60px 0;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-top .col {
    text-align: center;
}

.footer-top .col img {
    max-width: 120px;
    margin: 15px 0;
}

.footer-top .col p {
    color: #222;
    font-size: 15px;
    line-height: 1.6;
}

/* TÍTULO COM FUNDO AMARELO DIFERENTE (IDENTIDADE PRÓPRIA) */
.footer-top .col h2 {
    background: #FFB703; /* amarelo diferente do fundo */
    color: #1E2A39;      /* azul escuro da marca */
    padding: 12px 15px;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-transform: uppercase;
}
/* ================= FOOTER AZUL ================= */

.footer-middle {
    background: #0b2c4a; /* azul do site */
    padding: 50px 0;
}

.footer-middle .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-middle .col {
    flex: 1;
    color: #fff;
}

.footer-middle h3 {
    color: #ffcc00; /* amarelo do site */
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-middle p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-middle .social {
    width: 32px;
    margin-top: 10px;
}

/* ================= FOOTER PRETO ================= */

.footer-bottom {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 13px;
}

.footer-bottom p {
    margin: 6px 0;
}

.footer-bottom .links {
    color: #aaa;
}

/* ================= WHATSAPP FLUTUANTE ================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp img {
    width: 55px;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {
    .footer-middle .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-middle .col {
        margin-bottom: 25px;
    }

    .whatsapp {
        bottom: 15px;
        right: 15px;
    }
}
/* ================= BOTÃO WHATSAPP FLUTUANTE ================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #1f8f4d; /* verde escuro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 0 0 rgba(31, 143, 77, 0.6);
    animation: pulse-whats 1.6s infinite;
}

/* ÍCONE */
.whatsapp img {
    width: 32px;
    height: 32px;
}

/* ANIMAÇÃO PULSAR */
@keyframes pulse-whats {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 143, 77, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(31, 143, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 143, 77, 0);
    }
}

/* HOVER (DESKTOP) */
.whatsapp:hover {
    transform: scale(1.08);
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp img {
        width: 28px;
        height: 28px;
    }
}
/* ===== CARD HOVER RODAPÉ AMARELO ===== */

.footer-top .col {
    background: transparent;
    padding: 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* HOVER */
.footer-top .col:hover {
    background: #1f2a33; /* preto / grafite elegante */
}

/* TEXTO NO HOVER */
.footer-top .col:hover h2,
.footer-top .col:hover p {
    color: #ffffff;
}

/* IMAGEM NÃO ESCURECE */
.footer-top .col img {
    transition: transform 0.3s ease;
}

.footer-top .col:hover img {
    transform: scale(1.05);
}
/* ===============================
   MENU DESKTOP - FORÇA HORIZONTAL
=============================== */
@media (min-width: 992px) {

    .menu-principal {
        background: #0b2d4a;
    }

    .menu {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
    }

    .menu li {
        list-style: none;
        position: relative;
    }

    .menu a {
        color: #fff;
        padding: 18px 22px;
        display: block;
        font-weight: 600;
    }

    .menu a:hover {
        background: #ffcc00;
        color: #0b2d4a;
    }

    /* SUBMENU */
    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0b2d4a;
        min-width: 260px;
        z-index: 999;
    }

    .submenu li a {
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .submenu li a:hover {
        background: #ffcc00;
        color: #0b2d4a;
    }

   
    }
}
/* ===============================
   CORREÇÃO MENU DESKTOP
=============================== */
/* ================= MENU DESKTOP ================= */

.menu {
    background: #0b2c4d; /* azul do site */
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

/* Hover principal */
.menu ul li a:hover {
    background: #f9c600; /* amarelo do site */
    color: #000;
}

/* ===== SUBMENU SERVIÇOS ===== */

./* ================= MENU DESKTOP ================= */

.menu {
    width: 100%;
    background: #0b2c4d;
}

.menu-principal {
    list-style: none;
    margin: 0;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-principal > li {
    position: relative;
}

.menu-principal > li > a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;

    padding: 15px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.menu-principal > li > a:hover {
    color: #f9c600;
}

/* ================= SUBMENU ================= */

./* ================= MENU DESKTOP ================= */

.menu {
    width: 100%;
    background: #0b2c4d;
}

.menu-principal {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 itens */
    width: 100%;
}

.menu-principal > li {
    position: relative;
    text-align: center;
}

.menu-principal > li > a {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 55px;

    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    transition: background 0.3s;
}

.menu-principal > li > a:hover {
    background: #08213a;
    color: #f9c600;
}

/* ================= SUBMENU ================= */
/* ===== TOPO ===== */
.top-bar {
    background: #ffd200;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== HEADER ===== */
.header {
    background: #0b2c4d;
}

/* ===== MENU PRINCIPAL ===== */
.navbar {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* 🔴 FUNDAMENTAL */
}

.navbar ul li {
    position: relative; /* 🔴 FUNDAMENTAL */
}

.navbar ul li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

/* ===== DROPDOWN ===== */
.dropdown > a {
    cursor: pointer;
}

/* ===== SUBMENU ===== */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 260px;
    background: #0b2c4d;

    display: none;
    flex-direction: column;

    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}

/* ===== LINKS SUBMENU ===== */
.submenu li a {
    padding: 12px 15px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.submenu li a:hover {
    background: #f9c600;
    color: #000;
}

/* ===== ABRIR SUBMENU ===== */
.submenu.ativo {
    display: flex;
}
/* ===== RESET ABSOLUTO DO SUBMENU ===== */
.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #0b2c4d;
    flex-direction: column;
    z-index: 9999;
}

/* ===== SÓ ABRE QUANDO ATIVO ===== */
.submenu.ativo {
    display: flex !important;
}

/* ================= ORÇAMENTO ================= */

.orcamento-box {
    background: #123a5c;
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
}

.orcamento-box h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.orcamento-box p {
    color: #e0e0e0;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.botoes-orcamento {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.botoes-orcamento .btn {
    background: #f9c600;
    color: #000;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.botoes-orcamento .btn:hover {
    background: #ffb400;
}
.sobre-destaque {
    background: #fff;
    padding: 80px 20px;
}

.sobre-destaque .container {
    max-width: 1100px;
    margin: 0 auto;
}

.sobre-destaque h2 {
    font-size: 36px;
    font-weight: 700;
    color: #003366; /* AZUL */
}

.sobre-destaque .linha {
    display: block;
    width: 80px;
    height: 4px;
    background: #f4c400; /* AMARELO */
    margin: 15px 0 30px;
}

.sobre-destaque h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.sobre-destaque p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.box-compromisso {
    background: #f9f9f9;
    padding: 25px;
    border-left: 6px solid #f4c400; /* AMARELO */
    margin: 40px 0;
}

.box-compromisso h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003366;
}

.btn-servicos {
    display: inline-block;
    background: #003366; /* AZUL */
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-servicos:hover {
    background: #f4c400; /* AMARELO */
    color: #000;
}
html {
    scroll-behavior: smooth;
}
/* ===== INTRO SERVIÇOS ===== */

.servicos-intro {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.servicos-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b2c4d;
}

.servicos-intro h3 {
    font-size: 22px;
    margin-top: 25px;
    color: #0b2c4d;
}

.servicos-intro h4 {
    font-size: 20px;
    margin-top: 30px;
    color: #0056b3;
}

.servicos-intro p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
    color: #444;
}

/* Linha azul abaixo do título */
.linha-destaque {
    display: block;
    width: 120px;
    height: 4px;
    background: #0056b3;
    margin: 20px auto;
    border-radius: 2px;
}

/* Botão centralizado */
.btn-ver-servicos {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 28px;
    background: #0056b3;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ver-servicos:hover {
    background: #003f88;
}
/* ===== FORM ORÇAMENTO ===== */

.form-orcamento {
    max-width: 1100px;
    margin: 80px auto;
    padding: 50px;
    background: #1f2a33;
    border-radius: 12px;
    color: #fff;
}

.form-orcamento h2 {
    text-align: center;
    margin-bottom: 10px;
}

.form-orcamento p {
    text-align: center;
    margin-bottom: 40px;
    color: #ccc;
}

.form-orcamento .bloco {
    margin-bottom: 35px;
}

.form-orcamento .titulo-bloco {
    background: #ffcc33;
    color: #002b5c;
    padding: 12px 18px;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* GRID */
.form-orcamento .linha {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* INPUTS */
.form-orcamento input,
.form-orcamento select,
.form-orcamento textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
}

.form-orcamento textarea {
    resize: none;
    height: 120px;
}

/* CHECKBOX */
.opcionais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.opcionais label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BOTÃO */
.btn-enviar {
    margin: 40px auto 0;
    display: block;
    background: #ffcc33;
    color: #002b5c;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: #e6b800;
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .orcamento-container {
        padding: 30px 20px;
    }

    .form-orcamento h3 {
        text-align: center;
    }
}

.orcamento-hero {
    background: linear-gradient(135deg, #0b2b4a, #071e33);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.orcamento-hero-content {
    max-width: 900px;
    margin: auto;
}

.orcamento-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.orcamento-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

.btn-hero {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: #ffcc33;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #ffb700;
}
.orcamento-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
}

.orcamento-container form {
    background: #1c2730;
    padding: 40px;
    border-radius: 15px;
}

.bloco-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.bloco-form h3 {
    background: #ffcc33;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 18px;
}

.bloco-form input,
.bloco-form select,
.bloco-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: px; /* 👈 AQUI cria a separação */
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
}

}

.bloco-form input,
.bloco-form select,
.bloco-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 15px; /* 👈 AQUI cria a separação */
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
}


textarea {
    min-height: 120px;
    resize: vertical;
}
.descricao-servico {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* TÍTULO PRINCIPAL */
.descricao-servico h1 {
  font-size: 36px;
  font-weight: bold;
  color: #0b3c5d; /* azul principal */
  margin-bottom: 10px;
}

/* LINHA DE DESTAQUE */
.descricao-servico h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #0b3c5d;
  margin-top: 10px;
}

/* SUBTÍTULO */
.descricao-servico h2 {
  font-size: 26px;
  color: #1f6fa7;
  margin: 30px 0 15px;
}

/* TEXTO */
.descricao-servico p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* VANTAGENS */
.descricao-servico h3 {
  font-size: 24px;
  color: #0b3c5d;
  margin: 40px 0 20px;
}

.descricao-servico ul {
  list-style: none;
  padding: 0;
}

.descricao-servico ul li {
  font-size: 17px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

/* CHECK AZUL */
.descricao-servico ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f6fa7;
  font-weight: bold;
}

.servico-detalhes {
    padding: 80px 20px;
    background: #ffffff;
}

.servico-detalhes .container {
    max-width: 1100px;
    margin: 0 auto;
}

.servico-detalhes h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0b2b4a;
}

.linha-amarela {
    width: 120px;
    height: 4px;
    background: #ffcc00;
    margin: 15px 0 40px;
}

.servico-detalhes h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0b2b4a;
    margin: 40px 0 20px;
}

.servico-detalhes p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.servico-detalhes strong {
    color: #0b2b4a;
    font-weight: 700;
}

.lista-beneficios {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.lista-beneficios li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}
.servico-destaque {
    background-color: #ffffff;
    padding: 80px 20px;
}

.servico-destaque .container {
    max-width: 1140px;
    margin: 0 auto;
}

.titulo-servico {
    font-size: 44px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.linha-servico {
    width: 110px;
    height: 5px;
    background-color: #f4d100; /* AMARELO */
    margin-bottom: 32px;
}

.subtitulo-servico {
    font-size: 26px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 22px;
}

.texto-servico {
    font-size: 18px;
    line-height: 1.75;
    color: #4f4f4f;
    max-width: 880px;
}
/* ======================================================
   CONTEÚDO DAS PÁGINAS DE SERVIÇOS – PILLA TRANSPORTES
====================================================== */

.servico-conteudo {
    padding: 80px 20px;
    background-color: #ffffff;
}

.servico-conteudo .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* TÍTULOS */
.titulo-servico {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.subtitulo-servico {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-top: 50px;
    margin-bottom: 10px;
}

/* LINHA AMARELA */
.linha-destaque {
    width: 80px;
    height: 4px;
    background-color: #f4c430; /* AMARELO */
    margin-bottom: 30px;
}

/* TEXTOS */
.servico-conteudo p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* LISTA */
.lista-servicos {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.lista-servicos li {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

/* ÍCONE DE CHECK */
.lista-servicos li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4c430;
    font-weight: bold;
}

/* RESPONSIVO BÁSICO */
@media (max-width: 768px) {
    .titulo-servico {
        font-size: 28px;
    }

    .subtitulo-servico {
        font-size: 22px;
    }

    .servico-conteudo p,
    .lista-servicos li {
        font-size: 16px;
    }
}
/* ================================
   SEÇÃO SERVIÇO – TÍTULO ESTILIZADO
================================ */

.titulo-servico {
    font-size: 42px;
    font-weight: 800;
    color: #1f2a37;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.linha-destaque {
    width: 90px;
    height: 4px;
    background-color: #facc15; /* Amarelo */
    margin-bottom: 35px;
}

/* Subtítulo */
.subtitulo-servico {
    font-size: 26px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

/* Texto */
.secao-servico p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 30px;
}

/* Benefícios */
.lista-beneficios {
    list-style: none;
    padding: 0;
}

.lista-beneficios li {
    font-size: 16px;
    color: #374151;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.lista-beneficios li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #facc15; /* Amarelo */
    font-weight: bold;
}
.card-servico img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.servicos-container .card-servico img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}
/* ===============================
   CORREÇÃO DEFINITIVA DOS CARDS
================================ */

/* card como link */
.card-servico {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

/* imagem do card */
.card-servico img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* faixa amarela do título */
.card-servico h3 {
    background: #ffcc00;
    color: #0b2d4a;
    text-align: center;
    padding: 12px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* texto do card */
.card-servico p {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

/* efeito hover sem quebrar layout */
.card-servico:hover {
    transform: translateY(-6px);
}
.titulo-azul {
    color: #0b2e63; /* azul forte */
    margin-bottom: 20px;
}

.lista-dicas {
    list-style: none;
    padding-left: 0;
}

.lista-dicas li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.lista-dicas li::before {
    content: "✔";
    color: #0b2e63;
    position: absolute;
    left: 0;
}
/* FORÇA A DESCRIÇÃO ABAIXO DO TÍTULO AMARELO */
.card-servico div:not(.titulo),
.card-servico span,
.card-servico p {
    font-weight: 800 !important;
    text-align: center !important;
    color: #111 !important;
    font-size: 15.5px !important;
    line-height: 1.5 !important;
}
/* ===== LOCALIZAÇÃO ===== */

.pagina-conteudo {
    padding: 40px 20px;
}

.localizacao-conteudo {
    max-width: 1100px;
    margin: 0 auto;
}

.localizacao-conteudo h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.localizacao-conteudo h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #0b2e63;
}

.localizacao-conteudo p {
    font-size: 16px;
    line-height: 1.8;   /* 🔥 ISSO resolve o texto grudado */
    margin-bottom: 18px;
}

.localizacao-conteudo strong {
    font-weight: 600;
}

.mapa {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}
/* ===== CONTATO ===== */

.contato-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contato-container h1 {
    text-align: center;
    margin-bottom: 15px;
}

.descricao {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.contato-container h2 {
    text-align: center;
    margin-bottom: 5px;
}

.horario {
    text-align: center;
    margin-bottom: 40px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* FORM */
.formulario {
    background: #1f2933;
    padding: 30px;
    border-radius: 6px;
    color: #fff;
}

.formulario h3 {
    text-align: center;
    margin-bottom: 20px;
}

.formulario label {
    display: block;
    margin: 10px 0 5px;
}

.formulario input,
.formulario select,
.formulario textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.formulario button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #facc15;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* INFO */
.infos h3 {
    color: #f97316;
    margin-bottom: 20px;
}

.infos p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.infos i {
    color: #0b2e63;
    margin-right: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= MENU MOBILE ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 10001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-principal {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* ajuste conforme header */
        left: 0;
        width: 100%;
        background: #0b2e63;
        padding: 15px 0;
        z-index: 1000;
    }

    .menu-principal.ativo {
        display: flex;
    }

    .menu-principal li {
        width: 100%;
        margin-bottom: 5px;
    }

    .menu-principal li a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        color: #fff;
    }

    /* Submenu */
    .submenu {
        display: none;
        flex-direction: column;
        background: #123b7a;
        margin-top: 5px;
    }

    .submenu.ativo {
        display: flex;
    }

    .submenu li a {
        padding-left: 35px;
    }
}
/* ================= MENU MOBILE ================= */

/* Botão hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu {
        position: relative;
        padding: 15px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    .menu-principal {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0b2e63;
        flex-direction: column;
        padding: 20px;
        z-index: 1000;
    }

    .menu-principal li {
        width: 100%;
        margin-bottom: 10px;
    }

    .menu-principal li a {
        display: block;
        width: 100%;
        padding: 12px;
    }

    /* Submenu mobile */
    .submenu {
        position: static;
        display: none;
        width: 100%;
        background: #123b7a;
        margin-top: 5px;
    }

    .submenu li a {
        padding-left: 25px;
    }
}
/* MENU ABERTO NO MOBILE */
@media (max-width: 768px) {
    .menu-principal.menu-aberto {
        display: flex;
    }
}
/* ================= MENU MOBILE ================= */
@media (max-width: 768px) {

    .menu-principal {
        display: none;
        flex-direction: column;
        background: #0b2e63;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .menu-principal.menu-aberto {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
/* ================= MENU MOBILE - CONTROLE FINAL ================= */
@media (max-width: 768px) {

    /* ESCONDE O MENU */
    .menu-principal {
        display: none !important;
        flex-direction: column;
        background-color: #0b2e63;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
    }

    /* MOSTRA QUANDO CLICA */
    .menu-principal.menu-aberto {
        display: flex !important;
    }

    /* BOTÃO HAMBURGUER */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: #000;
        display: block;
    }
}
.hero-imagem-unica{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff; /* pode remover se quiser */
    padding: 20px 0;
}

.hero-imagem-unica img{
    width: 90%;
    max-width: 1400px; /* controla o tamanho máximo */
    height: auto;
    border-radius: 10px; /* opcional */
}
.hero-imagem-unica{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f4c400; /* coloque o mesmo amarelo do seu site */
    padding: 20px 0;
}