/* Estilo para o link da página que já está aberta */
.menu-item.ativo {
    color: #0d9488; /* A sua cor principal para destacar */
    font-weight: bold;
    cursor: default; /* Tira o ícone da 'mãozinha' ao passar o rato */
    text-decoration: none;
    opacity: 0.7; /* Deixa ligeiramente mais claro para mostrar que não é clicável */
}

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    background: #f9fafb;
    line-height: 1.6;
}
    
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    /* === NOVO HEADER PADRONIZADO (CONFORME IMAGEM) === */
    header { 
        position: sticky; 
        top: 0; 
        z-index: 100; 
        background: white; 
        border-bottom: 1px solid #e5e7eb; 
        padding: 15px 0; 
    }
    
    .header-inner { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        width: 100%;
    }

    .header-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }

    /* Espaçador para centralizar o nome perfeitamente */
    .header-spacer {
        width: 40px;
    }

    .brand { 
        text-align: center;
        flex-grow: 1;
    }

    .brand-name { 
        font-size: 1.4rem; 
        font-weight: 800; 
        letter-spacing: 0.06em; 
        color: #111827; 
        text-transform: uppercase; 
        display: block; 
        line-height: 1.2; 
    }

    .brand-sub { 
        font-size: 0.9rem; 
        font-weight: 600; 
        color: #4b5563; 
        display: block; 
        margin-top: 2px; 
    }

    .menu-toggle { 
        background: none; 
        border: none; 
        cursor: pointer; 
        font-size: 1.8rem; 
        color: #1f2937; 
        padding: 5px;
        width: 40px;
        display: flex;
        justify-content: flex-end;
    }

    .header-actions { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 15px;
    }

    .btn-header { 
        background: #0d9488; 
        color: white !important; 
        padding: 12px 10px; 
        border-radius: 10px; 
        font-weight: 700; 
        font-size: 0.95rem; 
        transition: all 0.2s; 
        border: 2px solid #0d9488; 
        text-align: center; 
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-header:hover { 
        background: #0f766e; 
        border-color: #0f766e; 
    }

    .btn-header-alt { 
        background: white !important; 
        color: #0d9488 !important; 
        border: 1px solid #0d9488; 
    }

    .btn-header-alt:hover { 
        background: #f0fdfa !important; 
    }

    /* Menu Mobile */
    .mobile-menu { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: white; 
        border-bottom: 1px solid #e5e7eb; 
        flex-direction: column; 
        z-index: 99;
    }
    
    .mobile-menu.active { 
        display: flex; 
    }

    .mobile-menu a { 
        padding: 15px 24px; 
        border-bottom: 1px solid #f3f4f6; 
        color: #4b5563; 
        font-weight: 500; 
        text-decoration: none;
    }

    .mobile-menu a:hover { 
        background: #f9fafb; 
        color: #0d9488; 
    }

    /* === COMPONENTES GERAIS === */
    .hero { padding: 40px 0; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
    h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 20px; }
    h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); line-height: 1.2; margin-bottom: 32px; letter-spacing: -0.02em; }
    h3 { font-size: 1.2rem; margin-bottom: 16px; font-weight: 700; }
    .hero-text { font-size: 1.1rem; color: #6b7280; margin-bottom: 24px; }
    
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 12px; font-weight: 700; transition: all 0.2s; cursor: pointer; text-decoration: none; border: none; }
    .btn-primary { background: #0d9488; color: white; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(13, 148, 136, 0.2); background: #0f766e; }
    .btn-secondary { background: white; color: #0d9488; border: 2px solid #0d9488; }
    .btn-secondary:hover { background: #f0fdf4; }

    section { padding: 60px 0; border-bottom: 1px solid #e5e7eb; }
    section.alt { background: #f3f4f6; }
    .content-box { background: white; border: 1px solid #e5e7eb; border-radius: 16px; padding: 32px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
    
    /* Tags */
    .tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
    .tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #f0fdf4; color: #15803d; border-radius: 999px; font-size: 0.9rem; font-weight: 600; border: 1px solid #dcfce7; }
    
    /* Grid */
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 24px; }
    .grid-item { background: white; padding: 24px; border-radius: 12px; border: 1px solid #e5e7eb; text-align: center; }
    .grid-item-value { font-size: 2rem; font-weight: 700; color: #0d9488; margin-bottom: 8px; }
    .grid-item-label { font-size: 0.9rem; color: #6b7280; font-weight: 600; }
    
    /* Split Layout */
    .split { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
    .info-panel { background: #f0fdf4; border: 1px solid #dcfce7; border-radius: 16px; padding: 28px; }
    .info-panel ul { list-style: none; margin: 16px 0 0; }
    .info-panel li { padding: 10px 0; }
    .info-panel strong { color: #0d9488; display: block; margin-bottom: 4px; }
    
    /* CTA Box */
    .cta-box { background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); color: white; border-radius: 16px; padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2); }
    .cta-box h2 { color: white; margin-bottom: 16px; }
    .cta-box p { color: rgba(255, 255, 255, 0.9); margin-bottom: 0; }
    
    /* Warning Box */
    .warning-box { background: #fef3c7; border: 1px solid #fcd34d; border-left: 4px solid #f59e0b; border-radius: 12px; padding: 24px; }
    .warning-box h3 { color: #92400e; margin-bottom: 12px; }
    .warning-box p { color: #78350f; margin: 0; line-height: 1.7; }
    
    /* Slider Cards */
    .demandas-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 24px; }
    .slider-card { background: white; border: 1px solid #e5e7eb; border-radius: 16px; padding: 24px; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
    .slider-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
    .slider-card h4 { font-size: 1.1rem; margin-bottom: 12px; color: #1f2937; }
    .slider-card p { color: #6b7280; font-size: 0.95rem; margin-bottom: 16px; }
    .slider-link { color: #0d9488; font-weight: 600; }
    
    /* Steps Container */
    .steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 24px; }
    .step-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; text-align: center; }
    .step-number { font-size: 2rem; font-weight: 800; color: #0d9488; display: block; margin-bottom: 12px; }
    .step-text { font-size: 1rem; font-weight: 600; color: #1f2937; display: block; }
    
    /* FAQ */
    .faq-list { display: grid; gap: 16px; margin-top: 24px; }
    .faq-item { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; }
    .faq-item h3 { font-size: 1rem; margin-bottom: 12px; color: #1f2937; }
    .faq-item h4 { font-size: 1rem; margin-bottom: 12px; color: #1f2937; }
    .faq-item p { color: #6b7280; font-size: 0.95rem; margin: 0; }
    
    /* Eyebrow */
    .eyebrow { color: #0d9488; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
    
    /* Hero Card */
    .hero-card { background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%); border-radius: 24px; padding: 40px; text-align: center; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
    .hero-card-icon { font-size: 3rem; margin-bottom: 16px; }
    .hero-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .hero-card p { color: #6b7280; font-size: 0.95rem; }
    .hero-card ul { list-style: none; text-align: left; margin-top: 16px; }
    .hero-card li { padding: 8px 0; color: #374151; }

    /* Footer */
    footer { background: #1f2937; color: white; padding: 40px 0; text-align: center; }
    .footer-center { margin-bottom: 32px; }
    .footer-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.02em; }
    .footer-crp { color: #d1d5db; font-size: 0.9rem; margin: 0; }
    .footer-service { color: #d1d5db; font-size: 0.9rem; margin-top: 4px; }
    .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid #374151; }
    .footer-contact { color: #0d9488; font-weight: 600; text-decoration: none; transition: color 0.2s; }
    .footer-contact:hover { color: #0f766e; }
    .copyright { text-align: center; color: #9ca3af; font-size: 0.85rem; margin-top: 24px; }

    /* Botões Flutuantes */
    .whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 50; background: white; color: #1f2937; padding: 12px 20px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); font-weight: 700; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: all 0.2s; }
    .whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
    
    .floating-booking { 
        position: fixed; bottom: 20px; left: 20px; z-index: 50; background: #0d9488; color: white; padding: 12px 20px; border-radius: 999px; box-shadow: 0 4px 12px rgba(13,148,136,0.3); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.2s;
        animation: pulse 2s infinite;
    }
    .floating-booking:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,148,136,0.4); }
    @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

    /* CTA Group */
    .cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

    /* Media Queries */
    @media (max-width: 768px) {
        .hero-grid { grid-template-columns: 1fr; }
        .header-actions { grid-template-columns: 1fr 1fr; }
        .btn-header { font-size: 0.85rem; padding: 10px 5px; }
        .brand-name { font-size: 1.2rem; }
        .brand-sub { font-size: 0.8rem; }
        .split { grid-template-columns: 1fr; }
        .cta-box { grid-template-columns: 1fr; }
        .cta-box > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; }
        .cta-box .btn { width: 100%; }
        .demandas-slider { grid-template-columns: 1fr; }
        .slider-card { display: flex; flex-direction: column; justify-content: space-between; }
        .steps-container { grid-template-columns: 1fr; }
        section { padding: 40px 0; }
        .container { padding: 0 16px; }
        .floating-booking { bottom: 80px; }
        .whatsapp-float { bottom: 20px; }
        .btn { width: 100%; }
        .cta-group { flex-direction: column; }
        h1 { font-size: 1.8rem; }
    }
