/* =========================================
   CONFIGURAÇÕES GERAIS E CORES (Paleta Premium)
   ========================================= */
:root {
    --cor-primaria: #0A192F; /* Azul Marinho Escuro (Elegância/Confiança) */
    --cor-secundaria: #00b0ff; /* Azul Vidro (Destaque da Marca) */
    --cor-destaque: #0088cc; /* Azul Escuro para efeitos de passar o rato */
    --cor-whatsapp: #25D366; /* Exclusivo para conversão */
    --texto-escuro: #1E293B; /* Cinza Chumbo para leitura perfeita */
    --texto-claro: #64748B; /* Cinza médio para textos secundários */
    --fundo-claro: #F8FAFC; /* Fundo gelo sofisticado */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--texto-escuro);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   TOP BAR (Barra Superior)
   ========================================= */
.top-bar {
    background-color: var(--cor-secundaria);
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content a {
    color: #fff;
    text-decoration: underline;
    transition: 0.3s;
}

.top-bar-content a:hover {
    color: #0A192F; /* Escurece suavemente ao passar o rato */
}

.top-bar-contatos {
    display: flex;
    gap: 20px;
    font-weight: 600;
}

/* =========================================
   CABEÇALHO E LOGO
   ========================================= */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo img {
    max-height: 75px; 
    width: auto;      
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--texto-escuro);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--cor-secundaria); /* Texto fica azul ao passar o rato */
}

/* Botões do Cabeçalho */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.icon-insta {
    color: var(--texto-escuro);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-insta svg {
    width: 28px;
    height: 28px;
}

.icon-insta:hover {
    color: #E1306C; 
    transform: scale(1.15); 
}

.btn-whatsapp {
    background-color: var(--cor-whatsapp);
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.menu-mobile-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--cor-primaria);
}

/* =========================================
   HERO SECTION (Slider Premium)
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    margin-top: 85px; 
    position: relative;
    overflow: hidden;
    background-color: var(--cor-primaria); 
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; 
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomBg 15s linear infinite alternate;
    z-index: 0;
}

.slide-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

.slide-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

.slide-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding-left: 5%; 
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #E2E8F0;
}

.btn-outline {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); 
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.ativo, .dot:hover {
    background-color: var(--cor-secundaria); 
    width: 35px; 
    border-radius: 10px;
}

/* =========================================
   HERO - BADGES E BOTÕES
   ========================================= */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-orcamento-hero {
    border: none;
}

/* =========================================
   SEÇÃO DE AUTORIDADE / POR QUE ESCOLHER
   ========================================= */
.autoridade-section {
    padding: 30px 0 0;
}

.autoridade-card {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(241,245,249,0.96));
    border: 1px solid rgba(127,156,176,0.18);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cor-destaque);
}

.autoridade-copy h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    color: var(--cor-primaria);
    margin-bottom: 14px;
    line-height: 1.2;
}

.autoridade-copy p {
    color: var(--texto-claro);
    margin-bottom: 18px;
    line-height: 1.75;
}

.autoridade-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.autoridade-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(127,156,176,0.08);
}

.autoridade-item strong {
    color: var(--cor-primaria);
    font-size: 0.98rem;
}

.autoridade-item span {
    color: var(--texto-claro);
    font-size: 0.92rem;
}

.autoridade-painel {
    display: grid;
    gap: 12px;
    align-content: start;
}

.trust-pill {
    padding: 16px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(127,156,176,0.16), rgba(74,100,120,0.12));
    color: var(--cor-primaria);
    font-weight: 700;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

/* =========================================
   SOBRE NÓS E ESTATÍSTICAS
   ========================================= */
.sobre-section {
    padding: 100px 0;
    background-color: #fff;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto p {
    color: var(--texto-claro);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.numeros-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.numero-item {
    flex: 1;
}

.numero-item span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cor-secundaria);
    line-height: 1;
}

.numero-item p {
    font-size: 0.9rem;
    color: var(--cor-primaria);
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

.sobre-imagem {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sobre-imagem:hover img {
    transform: scale(1.05);
}

.sobre-detalhe {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 25px 35px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--cor-secundaria);
}

/* =========================================
   DIFERENCIAIS (Cards Estilo Premium)
   ========================================= */
.diferenciais-section {
    padding: 90px 0;
    background-color: var(--fundo-claro); /* Fundo cinza gelo para destacar os cartões brancos */
}

.grid-diferenciais {
    display: grid;
    /* Altera o tamanho para acomodar perfeitamente os 4 cartões */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.diferencial-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); /* Sombra difusa igual à imagem */
    text-align: left; /* Alinhamento à esquerda */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* O quadrado azul clarinho de trás do ícone */
.icone-box {
    width: 65px;
    height: 65px;
    background-color: #E8F4FA; /* Fundo azul suave */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* O ícone SVG propriamente dito */
.icone-box svg {
    width: 32px;
    height: 32px;
    stroke: var(--cor-secundaria); /* Usa o azul brilhante da sua marca */
}

.diferencial-item h3 {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-weight: 700;
}

.diferencial-item p {
    color: var(--texto-claro);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================================
   SERVIÇOS (Grade com Overlay)
   ========================================= */
.servicos-section {
    padding: 90px 0;
    background-color: var(--fundo-claro);
}

.titulo-secao {
    text-align: center;
    font-size: 2.8rem;
    color: var(--cor-primaria);
    margin-bottom: 60px;
    font-weight: 700;
}

.titulo-secao-esquerda {
    text-align: left;
    margin-bottom: 20px;
}

.grid-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; 
}

.projeto-item {
    position: relative;
    display: block;
    height: 320px; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.projeto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.projeto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transition: all 0.4s ease;
}

.projeto-overlay h3 {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px); 
    transition: transform 0.4s ease;
    border-bottom: 2px solid var(--cor-secundaria); 
    padding-bottom: 10px;
}

@media (hover: hover) {
    .projeto-item:hover img { transform: scale(1.1); }
    .projeto-item:hover .projeto-overlay { opacity: 1; }
    .projeto-item:hover .projeto-overlay h3 { transform: translateY(0); }
}

@media (hover: none) {
    .projeto-overlay {
        opacity: 1; 
        background: linear-gradient(to top, rgba(10,25,47,0.9) 0%, rgba(10,25,47,0) 60%); 
        align-items: flex-end; 
        padding-bottom: 25px;
    }
    .projeto-overlay h3 {
        transform: translateY(0); 
        font-size: 1.3rem; 
        border-bottom: none;
    }
}

/* =========================================
   O NOSSO PROCESSO
   ========================================= */
.processo-section {
    padding: 90px 0;
    background-color: #fff;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.processo-item {
    background: var(--fundo-claro);
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
}

.processo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.processo-numero {
    width: 65px;
    height: 65px;
    background-color: var(--cor-secundaria);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 176, 255, 0.3);
}

.processo-item h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.processo-item p {
    color: var(--texto-claro);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   PORTFÓLIO E LIGHTBOX
   ========================================= */
.portfolio-section {
    padding: 90px 0;
    background-color: #F8FAFC; 
}

.filtros-portfolio {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 15px;
    margin-bottom: 50px;
}

.btn-filtro {
    background-color: transparent;
    border: 2px solid var(--cor-secundaria);
    color: var(--cor-primaria);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filtro:hover, .btn-filtro.ativo {
    background-color: var(--cor-secundaria);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 176, 255, 0.3);
}

.item-portfolio.esconder { display: none; }

.grid-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.item-portfolio {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.item-portfolio img {
    width: 100%;
    height: 280px;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.item-portfolio:hover img {
    transform: scale(1.08); 
}

.lightbox {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95); 
    align-items: center;
    justify-content: center;
}

.lightbox.ativo { display: flex; }

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: surgirLightbox 0.3s ease;
}

.fechar-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.fechar-lightbox:hover { color: var(--cor-secundaria); }

/* =========================================
   BANNER CTA INTERMÉDIO
   ========================================= */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.88); 
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-card {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
    margin-bottom: 18px;
    color: #fff;
}

.cta-card p {
    font-size: 1.04rem;
    max-width: 700px;
    margin: 0 auto 24px;
    color: #E2E8F0;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.cta-secondary {
    background: transparent;
    border-color: #fff;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.12);
}

.cta-trust-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-btn {
    font-size: 1.05rem;
    padding: 14px 28px;
    display: inline-block;
}

/* =========================================
   DEPOIMENTOS (Prova Social)
   ========================================= */
.depoimentos-section {
    padding: 90px 0;
    background-color: var(--fundo-claro);
}

.grid-depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-depoimento {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    border-top: 4px solid var(--cor-secundaria); 
    transition: transform 0.3s;
}

.card-depoimento:hover {
    transform: translateY(-5px);
}

.card-depoimento::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: #F1F5F9;
    font-family: serif;
    line-height: 1;
}

.estrelas {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.card-depoimento p {
    color: var(--texto-claro);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cliente-info strong {
    display: block;
    color: var(--cor-primaria);
    font-size: 1.1rem;
}

.cliente-info span {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* =========================================
   FAQ (Perguntas Frequentes)
   ========================================= */
.faq-section {
    padding: 90px 0;
    background-color: #fff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-item summary {
    padding: 22px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--cor-primaria);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background-color: var(--fundo-claro); }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--cor-secundaria); 
    font-weight: bold;
}

.faq-item[open] summary::after { content: '-'; }

.faq-item p {
    padding: 0 22px 22px;
    color: var(--texto-claro);
    line-height: 1.7;
    margin-top: 5px;
}

/* =========================================
   RODAPÉ PREMIUM
   ========================================= */
.footer-moderno {
    background-color: #F8FAFC; 
    color: var(--texto-claro); 
    padding-top: 80px;
    border-top: 1px solid #E2E8F0; 
}

.footer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.footer-highlight-card {
    padding: 24px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(127,156,176,0.16);
    box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.footer-highlight-card h4 {
    color: var(--cor-primaria);
    margin-bottom: 8px;
    font-size: 1rem;
}

.footer-highlight-card p {
    margin: 0;
    color: var(--texto-claro);
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.logo-footer {
    max-height: 55px; 
    margin-bottom: 20px;
    display: block;
}

.footer-col h4 {
    color: var(--cor-primaria); 
    font-size: 1.15rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.linha-decorativa {
    width: 40px;
    height: 3px;
    background-color: var(--cor-secundaria);
    margin-bottom: 25px;
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a {
    color: var(--texto-claro);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--cor-secundaria); 
    transform: translateX(5px);
}

.link-mapa {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 10px;
}

.link-mapa:hover {
    color: var(--cor-secundaria);
}

.footer-bottom {
    background-color: #F1F5F9; 
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94A3B8;
    margin: 0;
}

/* =========================================
   WHATSAPP FLUTUANTE
   ========================================= */
.float-whatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: var(--cor-whatsapp);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.float-whatsapp img {
    width: 38px;
}

/* =========================================
   RESPONSIVIDADE (Celulares)
   ========================================= */
@media (max-width: 768px) {
    .top-bar-endereco { display: none; }
    .top-bar-content { justify-content: center; }
    .header-actions { display: none; }

    .menu-mobile-btn { display: block; }
    
    nav {
        display: none;
        position: absolute;
        top: 120px; 
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    nav.ativo { display: block; }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-content { padding: 0 20px; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-botoes { justify-content: center; }
    .slider-btn { width: 45px; height: 45px; font-size: 16px; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .slider-dots { bottom: 25px; }

    /* Ajustes Mobile: Sobre e Processo */
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-detalhe { bottom: 0; right: 0; border-radius: 12px 0 0 0; }
    .numeros-grid { flex-direction: column; gap: 20px; text-align: center; }
    .autoridade-card { grid-template-columns: 1fr; padding: 24px; }
    .autoridade-painel { grid-template-columns: 1fr 1fr; }
    .cta-card { padding: 28px 20px; }
    .cta-trust-list { flex-direction: column; gap: 8px; }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col h4 { margin-top: 10px; }
}

/* =========================================
   ANIMAÇÕES
   ========================================= */
@keyframes pulso {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); } 
    100% { transform: scale(1); }
}
.animar-pulso { animation: pulso 3s infinite ease-in-out; }

@keyframes surgirDeBaixo {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animar-surgir {
    animation: surgirDeBaixo 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0; 
}

@keyframes surgirLightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.atraso-1 { animation-delay: 0.2s; }
.atraso-2 { animation-delay: 0.4s; }
.atraso-3 { animation-delay: 0.6s; }