/* Importação da fonte Poppins do Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        /* Regra para os Google Material Icons (garante o estilo) */
        .material-symbols-outlined {
            font-variation-settings:
            'FILL' 0,
                'wght' 400,
                'GRAD' 0,
                'opsz' 24;
          vertical-align: middle; /* Alinha o ícone com o texto */
        }

        /* Definição de Variáveis CSS para Cores e Fontes (AZUL como Primary) */
        :root {
            --color-primary: #007bff; /* Azul (Cor Principal do Site) */
            --color-secondary: #9d00ff; /* Verde Ciano/Aqua (Destaque Secundário) */
            --color-action: #FFA500; /* Laranja (CTA/Destaque FAQ Laranja) */
            --color-dark: #333333; /* Texto Principal */
            --color-light: #f9f9f9; /* Fundo de Seção */
            --color-white: #ffffff; /* Fundo/Texto Secundário */
            --font-stack: 'Poppins', sans-serif; /* Fonte moderna e limpa */
        }

        /* Reset Básico e Tipografia */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-stack);
            line-height: 1.6;
            color: var(--color-dark);
            background-color: var(--color-white);
            scroll-behavior: smooth; /* Rolagem suave para navegação */
        }

        h1, h2, h3 {
            margin-bottom: 0.5em;
            font-weight: 700;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* --- Botões Reutilizáveis (Cantos Arredondados) --- */
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 8px; /* Mais arredondado */
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--color-secondary);
            color: var(--color-white);
            border: 2px solid var(--color-secondary);
        }

        .btn-primary:hover {
            background-color: var(--color-action); /* Azul mais escuro */
            transform: translateY(-2px);
            border: 2px solid var(--color-action);
            box-shadow: 0 4px 12px #FFA500
        }

        .btn-cta {
            background-color: var(--color-action);
            color: var(--color-white);
            padding: 8px 20px;
            border: 2px solid var(--color-action);
        }

        .btn-cta:hover {
            background-color: var(--color-action); /* Laranja mais escuro */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px #FFA500;
        }

        .btn-large {
            padding: 18px 40px; 
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* ============================================== */
        /* HEADER / MENU (LADO ESQUERDO/DIREITO) */
        /* ============================================== */
        .header {
            background-color: var(--color-white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header .container {
            display: flex;
            justify-content: space-between; 
            align-items: center;
            padding: 10px 15px;
        }

        .logo-img-real {
            max-width: 170px;
            height: 50px;
            display: block;
        }

        .nav {
            display: flex; 
            align-items: center; 
        }

        .nav-list {
            list-style: none;
            display: flex; 
            margin-right: 20px; 
        }

        .nav-list li {
            margin-left: 20px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--color-primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none; 
            background: none;
            border: none;
            cursor: pointer;
            color: var(--color-primary);
        }

        .menu-toggle .material-symbols-outlined {
            font-size: 2rem;
        }

/* ============================================== */
/* SEÇÃO HERO (#home) - IMAGEM DE FUNDO COM FILTRO AZUL */
/* ============================================== */
.hero-section {
    color: var(--color-white);
    padding: 100px 0; 
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/who.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Filtro (Overlay) Azul sobre a imagem */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Overlay azul semi-transparente */
    background: linear-gradient(45deg, 
        rgba(0, 123, 255, 0.5), 
        rgba(157, 0, 255, 0.5));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative; 
    z-index: 2;
}

.hero-content .tagline {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-secondary); 
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    line-height: 1.1;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsividade para a seção Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        background-attachment: scroll; /* Remove parallax em mobile */
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}
        /* ============================================== */
        /* SEÇÃO DE DESTAQUES (QUEM SOMOS) - SEM CAIXAS */
        /* ============================================== */
        .highlight-section {
            padding: 80px 0;
            background-color: var(--color-light); 
            text-align: center;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px;
            margin-top: 40px;
        }

        .highlight-item {
            padding: 15px 0; 
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
        }

        .highlight-item .material-symbols-outlined {
            font-size: 3rem;
            color: var(--color-primary); /* Azul */
            margin-bottom: 15px;
            font-variation-settings: 'FILL' 1; 
        }

        .highlight-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 10px;
        }

        .highlight-item p {
            font-size: 1rem;
            color: #666;
        }

        /* ============================================== */
        /* SEÇÃO DE PLANOS (#planos) */
        /* ============================================== */
        .plans-section {
            padding: 80px 0;
            text-align: center;
            background-color: var(--color-light);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
            gap: 30px;
            margin-top: 40px;
        }

        /* Base de todos os Cartões */
        .plan-card {
            background-color: var(--color-white); 
            padding: 30px;
            border-radius: 10px;
            /* Borda inicial transparente para evitar saltos */
            border: 1px solid transparent; 
            display: flex;
            flex-direction: column;
            position: relative;
            /* Transições suaves para todos os efeitos */
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra padrão */
            z-index: 1; /* Padrão */
        }

        /* CLASSE TEMPORÁRIA para o Hover Laranja (LED Laranja) - Gerenciada pelo JS */
        .plan-card.active-hover {
            transform: translateY(-5px) scale(1.05);
            z-index: 10;
            opacity: 1;
            /* EFEITO LED LARANJA */
            box-shadow: 
                0 0 10px rgba(255, 165, 0, 0.6), /* Brilho Laranja */
                0 0 20px rgba(255, 165, 0, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.15); 
            border-color: var(--color-action); /* Laranja */
        }

        /* Estilo para quando o mouse sai e o cartão deve ser "apagado" */
        .plan-card.dim {
            opacity: 0.7; /* Suaviza visualmente */
            transform: none !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
            border-color: transparent !important;
            z-index: 1;
        }

        /* Remove hover padrão do CSS, pois o JS irá gerenciar o destaque exclusivo */
        .plan-card:hover {
            /* Não há regra CSS aqui, pois o .active-hover é acionado pelo JS */
        }

        .plan-card h3 {
            font-size: 1.8rem;
            color: var(--color-dark);
            margin-bottom: 20px;
        }

        /* Estilização do Box de Preço */
        .price-box {
            margin: 15px 0;
            line-height: 1;
        }

        .price-box .currency {
            font-size: 1.5rem;
            font-weight: 500;
            vertical-align: top;
            color: #666;
        }

        .price-box .price-main {
            font-size: 4rem; /* Preço grande */
            font-weight: 800;
            color: var(--color-primary); /* Azul */
        }

        .price-box .price-cents {
            font-size: 1.2rem;
            font-weight: 500;
            vertical-align: top;
            color: #666;
        }

        /* Estilização da Velocidade */
        .plan-card .speed {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }

        .plan-card .speed span {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-action); /* Laranja */
        }

        /* Lista de Recursos (Features) */
        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
            flex-grow: 1; 
        }

        .features-list li {
            padding: 8px 0;
            font-size: 1rem;
            color: #555;
            display: flex;
            align-items: center;
        }

        .features-list .material-symbols-outlined {
            font-size: 1.2rem;
            margin-right: 8px;
            color: green; /* Ícone de check */
        }
        .features-list li:has(.material-symbols-outlined[class*="close"]) .material-symbols-outlined {
            color: #f00; /* Ícone de fechar em vermelho */
        }


        /* DESTAQUE LED AZUL (Padrão) - Estado inicial do Plano Central */
        .plan-card.highlight-glow {
            transform: scale(1.05); 
            z-index: 5;
            
            /* EFEITO LED AZUL (Degradê na borda) */
            box-shadow: 
                0 0 10px rgba(0, 123, 255, 0.4), 
                0 0 20px rgba(0, 123, 255, 0.2), 
                0 10px 30px rgba(0, 0, 0, 0.1); 
            
            /* Borda azul */
            border: 1px solid var(--color-primary); 
        }

        /* TAG "Mais Popular" */
        .plan-card .tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--color-action); /* Laranja */
            color: var(--color-white);
            padding: 5px 15px;
            border-radius: 0 10px 0 10px;
            font-weight: 600;
            font-size: 0.8rem;
        }


        /* ============================================== */
        /* SEÇÃO DE DÚVIDAS (FAQ) - GRADIENTE AZUL, DETALHES LARANJA */
        /* ============================================== */
        .faq-section {
            padding: 80px 0;
            color: var(--color-white);
            text-align: center;
            position: relative;
            z-index: 1;
            background-color: var(--color-primary);
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
        rgba(0, 123, 255, 1), 
        rgba(157, 0, 255, 1));
            z-index: -1;
        }

        .faq-section h2 {
            color: var(--color-white);
        }

        .faq-section .subtitle {
            margin-bottom: 40px;
            color: var(--color-light);
            font-style: italic;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 20px;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* Destaque da pergunta no hover - MAIS SUAVE */
        .faq-item:hover {
            border-color: var(--color-action);
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
            transform: translateY(-2px);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-white);
            margin: 0;
            display: flex;
            align-items: flex-start;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .faq-question .material-symbols-outlined {
            font-size: 1.5rem;
            color: var(--color-action);
            margin-right: 12px;
            margin-top: 2px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item:hover .faq-question .material-symbols-outlined {
            transform: scale(1.1);
        }

        /* ESTILO DA RESPOSTA - ANIMAÇÃO MAIS SUAVE */
        .faq-answer {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            border-top: 1px solid transparent;
            margin-top: 0;
        }

        .faq-answer p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin: 0;
            padding-top: 0;
            transition: padding 0.4s ease;
        }

        /* EFEITO HOVER: Mostra a resposta com animação suave */
        .faq-item:hover .faq-answer {
            max-height: 300px; /* Altura máxima suficiente para a resposta */
            opacity: 1;
            margin-top: 15px;
            border-top-color: rgba(255, 255, 255, 0.2);
        }

        .faq-item:hover .faq-answer p {
            padding-top: 15px;
        }

        /* ============================================== */
        /* SEÇÃO DE CONTATO */
        /* ============================================== */
        .contact-section {
            padding: 80px 0;
            background-color: var(--color-white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h2 {
            text-align: left;
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item .material-symbols-outlined {
            color: var(--color-primary);
            margin-right: 15px;
            font-size: 1.5rem;
            margin-top: 2px;
        }

        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--color-dark);
        }

        .contact-text p {
            color: #666;
        }

        /* NOVO ESTILO PARA HORÁRIO DE ATENDIMENTO */
        .business-hours-featured {
            background: linear-gradient(135deg, var(--color-primary), #0056b3);
            color: var(--color-white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
            text-align: center;
        }

        .business-hours-featured h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .business-hours-featured h3 .material-symbols-outlined {
            margin-right: 10px;
            font-size: 2rem;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hour-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .hour-day {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .hour-time {
            font-weight: 500;
            background-color: var(--color-action);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .hour-item.closed .hour-time {
            background-color: #6c757d;
        }

        .business-note {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--color-action);
        }

        .business-note p {
            margin: 0;
            font-style: italic;
            line-height: 1.5;
        }

        /* ============================================== */
        /* FOOTER */
        /* ============================================== */
        .footer {
            background-color: #222;
            color: var(--color-white);
            padding: 50px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo img {
            max-width: 170px;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: #aaa;
            margin-bottom: 20px;
        }

        .footer-links h4,
        .footer-contact h4 {
            margin-bottom: 20px;
            color: var(--color-white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-secondary);
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: #aaa;
            display: flex;
            align-items: center;
        }

        .footer-contact .material-symbols-outlined {
            font-size: 1.2rem;
            margin-right: 8px;
            color: var(--color-secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* FAQ Mobile - Clique para abrir (também mais suave) */
        @media (max-width: 768px) {
            .faq-item {
                padding: 18px;
            }
            
            .faq-answer {
                max-height: 0;
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            
            .faq-item.active .faq-answer {
                max-height: 500px; /* Mais espaço para conteúdo em mobile */
                opacity: 1;
                margin-top: 15px;
                border-top-color: rgba(255, 255, 255, 0.2);
            }
            
            .faq-item.active .faq-answer p {
                padding-top: 15px;
            }
            
            .faq-question {
                font-size: 1rem;
            }
            
            .faq-question .material-symbols-outlined {
                font-size: 1.3rem;
            }
        }

        /* Melhoria para tablets */
        @media (min-width: 769px) and (max-width: 1024px) {
            .faq-grid {
                max-width: 90%;
            }
            
            .faq-item:hover .faq-answer {
                max-height: 400px; /* Mais espaço em tablets */
            }
        }

        /* ============================================== */
        /* RESPONSIVIDADE (MOBILE FIRST) */
        /* ============================================== */

        /* TELAS PEQUENAS (Mobile - Padrão) */
        @media (max-width: 992px) {
            
            /* Header/Menu */
            .header .container {
                padding: 10px 15px;
                position: relative;
            }
            
            .menu-toggle { 
                display: block; 
            }
            
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--color-white);
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                padding: 20px 0;
                z-index: 999;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
            
            .nav.active { 
                transform: translateY(0);
                opacity: 1;
                display: flex;
            }
            
            .nav-list { 
                flex-direction: column; 
                width: 100%; 
                margin-right: 0; 
            }
            
            .nav-list li { 
                margin: 0; 
                text-align: center; 
                border-bottom: 1px solid var(--color-light); 
            }
            
            .nav-list li:last-child { 
                border-bottom: none; 
            }
            
            .nav-link { 
                display: block; 
                padding: 15px 0; 
                width: 100%; 
            }
            
            .btn-cta { 
                margin: 15px auto; 
                width: 80%; 
                max-width: 200px;
            }
            
            /* Seção Hero (Mobile) */
            .hero-section { 
                padding: 60px 0; 
            }
            
            .hero-content h2 { 
                font-size: 2.5rem; 
            }
            
            .hero-content p { 
                font-size: 1rem; 
            }
            
            .btn-large { 
                padding: 15px 30px; 
                font-size: 1.1rem; 
            }
            
            /* Seção Quem Somos (Mobile) */
            .highlight-section { 
                padding: 50px 0; 
            }
            
            .highlight-grid { 
                grid-template-columns: 1fr; 
            }

            /* Seção Benefícios (Mobile) */
            .benefits-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .benefits-content h2 {
                text-align: center;
            }

            /* Seção Planos (Mobile) - Reset de efeitos de glow/scale */
            .plans-grid {
                grid-template-columns: 1fr; 
                gap: 20px;
            }
            
            .plan-card.highlight-glow,
            .plan-card.active-hover,
            .plan-card.dim {
                transform: none !important;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
                opacity: 1 !important;
                border-color: transparent !important;
            }
            
            .plan-card.highlight-glow {
                border: 1px solid var(--color-primary) !important;
            }
            
            /* Seção Contato (Mobile) */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-info h2 {
                text-align: center;
            }
            
            /* Footer (Mobile) */
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-contact p {
                justify-content: center;
            }
            
        }

        /* TELAS MÉDIAS (Tablet) */
        @media (min-width: 768px) and (max-width: 1024px) {
            
            /* Seção Quem Somos (Tablet) */
            .highlight-grid {
                grid-template-columns: repeat(2, 1fr); 
            }
            
            /* Seção Benefícios (Tablet) */
            .benefits-container {
                grid-template-columns: 1fr;
            }
            
            /* Footer (Tablet) */
            .footer-container {
                grid-template-columns: 2fr 1fr;
            }
        }