/* --- CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    /* Cores */
    --primary: #0066cc;
    /* Azul Institucional Forte */
    --primary-dark: #004a94;
    /* Azul Profundo Hover */
    --accent: #00d2d3;
    /* Ciano Moderno (Detalhes e Botões) */
    --dark: #0f172a;
    /* Texto Principal (Quase preto - Azul Noite) */
    --gray: #64748b;
    /* Texto Secundário */
    --light: #f8fafc;
    /* Fundo Claro (Gelo) */
    --white: #ffffff;
    --success: #10b981;
    /* Verde WhatsApp */

    /* Layout */
    --radius: 16px;
    /* Bordas mais arredondadas */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BOTÕES MODERNOS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.glow {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 211, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 211, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 211, 0);
    }
}

/* --- HEADER GLASSMORPHISM --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    /* Força a altura exata */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Usa 100% dos 80px do pai */
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 0;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

.nav-links .btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-links a.btn-nav::after {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px;
    transition: 0.3s;
}

/* --- HERO SECTION (COM IMAGEM DE FUNDO REAL) --- */
/* --- HERO SECTION --- */
#hero {
    position: relative;
    /* Altura ajustada para garantir que cubra a tela, mas desconte a barra de rolagem */
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Centraliza verticalmente */

    /* IMAGEM DE FUNDO */
    background: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;

    /* TRUQUE DA TRANSPARÊNCIA: */
    /* Puxamos o hero para cima para ele ficar atrás do menu */
    margin-top: -60px;

    /* CORREÇÃO DO CORTE: */
    /* Empurramos o CONTEÚDO (texto) para baixo para não bater no menu */
    /* 80px (altura do menu) + 80px (respiro visual) = 160px */
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente mais rico para dar profundidade e contraste com o texto */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 20%, rgba(0, 102, 204, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 40px;
}

.badge {
    background: var(--accent);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 210, 211, 0.3);
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-tag i {
    color: var(--accent);
    font-size: 1.1rem;
}

.location-tag span {
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- DIFERENCIAIS (Cards Flutuantes) --- */
#sobre {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.15rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 20px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid #eef2f6;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    top: 0;
}

.feature-card:hover {
    top: -10px;
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: 0.4s;
    transform: rotate(-5deg);
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- ESTRUTURA (COM FOTO REAL) --- */
.bg-soft {
    background-color: #f1f5f9;
    /* Fundo cinza azulado claro */
}

#estrutura {
    padding: 120px 0;
}

.estrutura-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.estrutura-text {
    flex: 1;
}

.estrutura-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.estrutura-text p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
}

.check-list li {
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    font-weight: 500;
}

.check-list i {
    color: var(--success);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.estrutura-visual {
    flex: 1.1;
    position: relative;
    padding: 20px;
}

.main-img {
    height: 450px;
    border-radius: 30px;
    /* IMAGEM DE ESTRUTURA: Substitua por uma foto real do seu centro cirúrgico ou consultório */
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Efeito de borda decorativa atrás da imagem */
.main-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 3px solid var(--accent);
    z-index: -1;
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

/* --- SERVIÇOS (Cards Limpos) --- */
#servicos {
    padding: 120px 0;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 10px;
}

.service-item {
    background: var(--white);
    border: 1px solid #eef2f6;
    padding: 35px 30px;
    border-radius: var(--radius);
    width: 320px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-item h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow i {
    transition: 0.3s;
}

.service-item:hover .link-arrow i {
    transform: translateX(5px);
}

.highlight {
    background: var(--dark);
    border: none;
}

.highlight h3 {
    color: var(--white);
}

.highlight p {
    color: #94a3b8;
}

.highlight .link-arrow {
    color: var(--accent);
}

/* --- CONTATO E FORMULÁRIO --- */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* --- CORREÇÃO FINAL PARA CELULAR (MOBILE) --- */
@media (max-width: 768px) {
    
    /* 1. Ajuste de Fontes (Para não ficarem gigantes) */
    .hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
    .section-header h2, .estrutura-text h2 { font-size: 1.8rem; }
    .hero-content p, .estrutura-text p { font-size: 1rem; }

    /* 2. Hero Section (Topo) */
    #hero {
        /* Remove o efeito fixed no celular pois causa bugs em alguns navegadores */
        background-attachment: scroll; 
        background-position: center center;
        padding-top: 140px; /* Espaço para o menu não cobrir o texto */
        padding-bottom: 60px;
        height: auto; /* Altura automática para caber o conteúdo */
        min-height: auto;
    }

    /* 3. Seção Estrutura (Segurança e Conforto) */
    .estrutura-wrapper {
        flex-direction: column; /* Coloca um embaixo do outro */
        gap: 30px;
        text-align: center; /* Centraliza o texto */
        padding: 40px 0;
    }

    .estrutura-text {
        width: 100%;
        padding: 0;
    }

    /* Mantém a lista alinhada à esquerda para ficar bonito */
    .check-list {
        display: inline-block; 
        text-align: left;
        margin-top: 15px;
    }

    .estrutura-visual {
        width: 100%;
        /* Margem embaixo para o card flutuante não invadir a próxima seção */
        margin-bottom: 30px; 
    }

    .main-img {
        height: 280px; /* Diminui a altura da imagem */
    }

    /* Ajuste do Card Flutuante (Protocolos) */
    .floating-card {
        width: 90%; /* Ocupa a largura quase toda */
        left: 50%;
        transform: translateX(-50%); /* Centraliza perfeitamente */
        bottom: -25px;
        padding: 15px;
        justify-content: center;
        font-size: 0.9rem;
    }
}

/* --- NOSSA EQUIPE --- */
#equipe {
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 10px;
}

.team-card {
    background: var(--white);
    border: 1px solid #eef2f6;
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    position: relative;
    top: 0;
}

.team-card:hover {
    top: -8px;
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-avatar {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
    margin-bottom: 18px;
    transform: rotate(-5deg);
    transition: 0.35s ease;
}

.team-card:hover .team-avatar {
    background: var(--primary);
    color: var(--white);
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.25);
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.team-desc {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.team-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.85rem;
}

.team-badges i {
    color: var(--accent);
}

.team-cta {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Responsivo */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-cta {
        flex-direction: column;
        width: 100%;
    }
}

.team-avatar.photo {
    padding: 0;
    overflow: hidden;
    background: none;
}

.team-avatar.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar.photo img {
    transform: scale(1.08);
}
.team-avatar.photo img {
    filter: saturate(1.05) contrast(1.05);
}

/* Elemento decorativo de fundo */
.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info .subtitle {
    color: #cbd5e1;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.info-card i {
    font-size: 2rem;
    color: var(--accent);
}

.info-card div strong {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.info-card div span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Wrapper do Mapa com Imagem de Capa */
.map-wrapper {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.map-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Botão sobre o mapa */
.map-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-wrapper {
    flex: 1;
    min-width: 350px;
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.form-wrapper h3 {
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-size: 1.8rem;
    text-align: center;
}

/* Inputs Modernos (Floating Label Style) */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s;
    background: transparent;
    color: var(--dark);
    appearance: none;
    /* Remove estilo padrão do select */
}

.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    transition: 0.3s;
    background: var(--white);
    padding: 0 8px;
    font-weight: 500;
}

.input-group input:focus,
.input-group input:not(:placeholder-shown),
.input-group select:focus,
.input-group select:not([value=""]):valid {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group select:focus+label,
.input-group select:not([value=""]):valid+label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary);
}

.form-footer {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 18px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efeito elástico */
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

/* --- FOOTER --- */
footer {
    background: #020617;
    color: #94a3b8;
    padding: 60px 0 30px;
    text-align: center;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-logo p {
    color: #64748b;
    font-size: 1rem;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    font-size: 0.9rem;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .estrutura-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .estrutura-text {
        padding: 0 20px;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    .main-img {
        height: 350px;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        justify-content: center;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .map-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile Menu simplificado */
    .burger {
        display: block;
    }

    #hero {
        margin-top: 0;
        padding-top: 120px;
        height: auto;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* --- CLASSE PARA ANIMAÇÃO JS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}