/* =========================================
   VARIÁVEIS E RESET GLOBAL
========================================= */
:root {
    --azul-caixa: #005CA9;
    --azul-escuro: #003b6e;
    --laranja: #F39200;
    --laranja-hover: #e08600;
    --fundo-cinza: #f8f9fa;
    --texto-escuro: #333333;
    --texto-claro: #666666;
    --branco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--fundo-cinza);
    color: var(--texto-escuro);
}

/* =========================================
   SEÇÃO HERO (TOPO AZUL)
========================================= */
.hero-section {
    background: linear-gradient(180deg, var(--azul-escuro) 0%, var(--azul-caixa) 100%);
    color: var(--branco);
    padding: 20px 20px 60px 20px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    text-align: center;
}

.header {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.titulo-principal {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.subtitulo-laranja {
    color: var(--laranja);
    font-size: 28px;
    margin-bottom: 15px;
}

.descricao-hero {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-primario {
    background-color: var(--laranja);
    color: var(--branco);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.4);
    text-decoration: none;
}

.btn-primario:hover {
    background-color: var(--laranja-hover);
}

.beneficios-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    font-size: 14px;
}

/* =========================================
   SEÇÃO DE SERVIÇOS
========================================= */
.servicos-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.secao-cabecalho {
    text-align: center;
    margin-bottom: 40px;
}

.tag-secao {
    color: var(--laranja);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.secao-cabecalho h2 {
    color: var(--azul-escuro);
    font-size: 28px;
    margin: 10px 0;
}

.secao-cabecalho p {
    color: var(--texto-claro);
    font-size: 16px;
}

.grid-servicos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .grid-servicos {
        grid-template-columns: 1fr 1fr;
    }
}

.card-servico {
    background-color: var(--branco);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.card-servico:hover {
    transform: translateY(-5px);
}

.icone-servico {
    background-color: #e6f0fa;
    color: var(--azul-caixa);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.icone-servico img {
    max-width: 90%;
    max-height: 90%;
}

.card-servico h3 {
    color: var(--azul-escuro);
    font-size: 18px;
    margin-bottom: 10px;
}

.card-servico p {
    color: var(--texto-claro);
    font-size: 14px;
    line-height: 1.5;
}

.link-saiba-mais {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    color: var(--azul-caixa);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

/* =========================================
   WIDGET WHATSAPP FLUTUANTE
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon img {
    width: 32px; 
    height: 32px;
    object-fit: contain;
}

.whatsapp-tooltip {
    background-color: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-right: 15px;
    font-size: 14px;
    color: var(--texto-escuro);
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
}

.whatsapp-tooltip.esconder {
    opacity: 0;
    pointer-events: none; 
    transform: translateX(20px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

/* =========================================
   SECÇÃO 3: POR QUE ESCOLHER A GENTE
========================================= */
.confianca-section {
    padding: 60px 20px;
    background-color: var(--branco);
}

.confianca-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .confianca-container {
        grid-template-columns: 1fr 1fr;
    }
}

.imagem-placeholder {
    height: 400px;
    border-radius: 20px;
    position: relative; 
    display: flex;
    align-items: flex-end;
    padding: 20px;
    overflow: hidden; 
}

.imagem-caixa-eletronico {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
}

.imagem-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 59, 110, 0.75), rgba(0, 92, 169, 0.35));
    z-index: 2; 
}

.pin-localizacao {
    background-color: var(--branco);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--azul-escuro);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative; 
    z-index: 3; 
}

.icone-pin-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.pin-localizacao small {
    font-weight: normal;
    color: var(--texto-claro);
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.confianca-conteudo h2 {
    color: var(--azul-escuro);
    font-size: 28px;
    margin: 10px 0 20px 0;
}

.confianca-conteudo p {
    color: var(--texto-claro);
    line-height: 1.6;
    margin-bottom: 30px;
}

.grid-estatisticas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stat-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
}

.stat-icone img {
    width: 32px; 
    height: 32px; 
    object-fit: contain; 
    display: block;
}

.stat-texto {
    display: flex;
    flex-direction: column;
}

.stat-texto strong {
    color: var(--azul-escuro);
    font-size: 20px;
}

.stat-texto span {
    color: var(--texto-claro);
    font-size: 12px;
}

/* BOTÃO WHATSAPP VAZADO (Usado na Home e no Form) */
.btn-whatsapp-outline {
    background-color: transparent;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-whatsapp-outline img {
    width: 32px;
    height: 32px; 
}

.btn-whatsapp-outline:hover {
    background-color: #25D366;
    color: var(--branco);
}

/* =========================================
   SECÇÃO 4: NOSSA EQUIPA
========================================= */
.equipe-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.grid-equipe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-equipe {
        grid-template-columns: 1fr 1fr;
    }
}

.card-equipe {
    background-color: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.foto-placeholder {
    height: 200px;
    background-color: #003b6e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-placeholder img {
    width: 80px;
    height: 80px;
    object-fit: contain; 
}

.info-equipe {
    padding: 25px;
}

.info-equipe h3 {
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.cargo-equipe {
    color: var(--laranja);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.info-equipe p {
    color: var(--texto-claro);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.botoes-contato {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-contato {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #ddd;
    background-color: transparent;
    transition: all 0.3s ease;
}

.zap { color: #25D366; border-color: #25D366; }
.insta { color: #E1306C; border-color: #E1306C; }
.email { color: var(--azul-caixa); border-color: var(--azul-caixa); }

.zap:hover { background-color: #25D366; color: #ffffff; }
.insta:hover { background-color: #E1306C; color: #ffffff; }
.email:hover { background-color: var(--azul-caixa); color: #ffffff; }

/* =========================================
   SECÇÃO 5: DEPOIMENTOS
========================================= */
.depoimentos-section {
    padding: 60px 20px;
    background-color: var(--branco);
}

.grid-depoimentos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-depoimentos {
        grid-template-columns: 1fr 1fr;
    }
}

.card-depoimento {
    background-color: var(--fundo-cinza);
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.estrelas { margin-bottom: 15px; }

.estrelas img {
    height: 40px;
    width: auto; 
    display: block;
}

.badge-servico {
    background-color: #e6f0fa;
    color: var(--azul-caixa);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.texto-depoimento {
    color: var(--texto-escuro);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-cliente {
    background-color: #ccc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.nome-cliente {
    display: flex;
    flex-direction: column;
}

.nome-cliente strong { color: var(--azul-escuro); font-size: 14px; }
.nome-cliente span { color: var(--texto-claro); font-size: 12px; }

/* =========================================
   SECÇÃO 6: MAPAS E ENDEREÇOS
========================================= */
.enderecos-section {
    padding: 60px 20px;
    background-color: var(--fundo-cinza);
    text-align: center;
}

.grid-enderecos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-enderecos { grid-template-columns: 1fr 1fr; }
}

.card-endereco {
    background-color: var(--azul-caixa);
    border-radius: 16px;
    overflow: hidden;
    color: var(--branco);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.endereco-info { padding: 20px; }

.endereco-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

.endereco-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center; 
    gap: 8px; 
}

.endereco-info h3 img {
    width: 32px; 
    height: 32px;
    flex-shrink: 0;
}

.mapa-container iframe { display: block; }

/* =========================================
   SECÇÃO 7: CTA FINAL
========================================= */
.cta-final {
    background-color: #004a87;
    color: var(--branco);
    padding: 60px 20px;
    text-align: center;
}

.icone-destaque {
    font-size: 40px;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.icone-destaque img {
    width: 48px; 
    height: 48px;
    object-fit: contain;
}

.cta-final h2 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-final .laranja { color: var(--laranja); }

.cta-final p {
    color: #d0e1f0;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.tags-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 14px;
}

.tags-cta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tags-cta span img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-whatsapp-cheio {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    margin: 0 auto;
    text-decoration: none;
}

.btn-whatsapp-cheio img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-whatsapp-cheio:hover { background-color: #1ebe57; }

.link-formulario-texto {
    color: var(--branco);
    text-decoration: underline;
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
}

/* =========================================
   RODAPÉ (FOOTER)
========================================= */
.rodape {
    background-color: #0d1b2a;
    color: var(--branco);
    padding: 60px 20px 20px 20px;
}

.rodape-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .rodape-container { grid-template-columns: 2fr 1fr 1fr; }
}

.texto-rodape {
    color: #a0aec0;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
}

.rodape h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--branco);
}

.lista-rodape { list-style: none; }

.lista-rodape li {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lista-rodape li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.rodape-legal {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #718096;
    font-size: 12px;
}

.texto-miudo {
    margin-top: 10px;
    line-height: 1.5;
}