 :root {
            --vermelho-principal: #D94814;
            --vermelho-escuro: #A3350F;
            --vermelho-claro: #F05C2D;
            --laranja: #F29F05;
            --amarelo: #F2E205;
            --preto: #0D0D0D;
            --branco: #FFFFFF;
            --cinza-claro: #F8F8F8;
            --cinza-escuro: #333333;
            --cinza-medio: #777777;
        }
        
        /* Reset e estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--branco);
            color: var(--preto);
            line-height: 1.6;
            overflow-x: hidden;
        }
          
        /* Container principal */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header e Navegação */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            height: 45px;
            width: 45px;
            background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
            margin-right: 12px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(217, 72, 20, 0.3);
        }
        
        .logo-text {
            color: var(--preto);
            font-size: 26px;
            font-weight: 700;
        }
        
        .logo-text span {
            color: var(--vermelho-principal);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--preto);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        nav ul li a:hover {
            color: var(--vermelho-principal);
        }
         
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--vermelho-principal);
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--preto);
            cursor: pointer;
        }
        
        /* Seção Hero */
        .hero {
            background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
            color: var(--branco);
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
          .hero p {
            font-size: 1.3rem;
            margin: 0 auto 40px;
            opacity: 0.95;
            max-width: 700px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--preto);
            color: var(--branco);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 2px solid var(--preto);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--preto);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            margin-top: 60px;
            gap: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Seção de Vantagens */
        .vantagens {
            padding: 100px 0;
            background-color: var(--cinza-claro);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--preto);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
          
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--vermelho-principal);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--cinza-escuro);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }
        
        .vantagens-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .vantagem-card {
            background-color: var(--branco);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .vantagem-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
        }
        
        .vantagem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .vantagem-icon {
            font-size: 50px;
            color: var(--vermelho-principal);
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .vantagem-card h3 {
            margin-bottom: 15px;
            color: var(--preto);
            font-size: 1.4rem;
        }
         .planos {
            padding: 100px 0;
            background-color: var(--branco);
            position: relative;
        }
        
        .planos:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, var(--cinza-claro) 0%, transparent 100%);
            z-index: 0;
        }
        
        .planos-content {
            position: relative;
            z-index: 1;
        }
        
        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .plano-card {
            background-color: var(--branco);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid #f0f0f0;
        }
        
        .plano-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .plano-header {
            padding: 30px;
            text-align: center;
            color: var(--branco);
            position: relative;
            overflow: hidden;
        }
        
        .plano-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
            z-index: 1;
        }
        
        .plano-header-content {
            position: relative;
            z-index: 2;
        }
          .plano-simples .plano-header:before {
            opacity: 0.9;
        }
        
        .plano-pro .plano-header:before {
            opacity: 1;
        }
        
        .plano-premium .plano-header:before {
            opacity: 0.95;
        }
        
        .plano-titulo {
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .plano-preco {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .plano-periodo {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .plano-popular {
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--amarelo);
            color: var(--preto);
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transform: rotate(45deg);
            z-index: 3;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .plano-body {
            padding: 30px;
        }
        
        .plano-lista {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plano-lista li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .plano-lista li:last-child {
            border-bottom: none;
        }
          .plano-lista li:before {
            content: "✓";
            color: var(--vermelho-principal);
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .plano-button {
            display: block;
            width: 100%;
            padding: 15px;
            text-align: center;
            background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--laranja) 100%);
            border: none;
            border-radius: 8px;
            color: var(--branco);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(217, 72, 20, 0.3);
        }
        
        .plano-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(217, 72, 20, 0.4);
        }
        
        /* Seção FAQ */
        .faq {
            padding: 100px 0;
            background-color: var(--cinza-claro);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            background-color: var(--branco);
        }
        
        .faq-pergunta {
            padding: 20px 25px;
            background-color: var(--branco);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .faq-pergunta:hover {
            color: var(--vermelho-principal);
        }
         .faq-resposta {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s, padding 0.4s;
        }
        
        .faq-item.ativo .faq-resposta {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        .faq-item.ativo .faq-seta {
            transform: rotate(180deg);
            color: var(--vermelho-principal);
        }
        
        .faq-seta {
            transition: all 0.3s;
            color: var(--cinza-medio);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--preto) 0%, #1a1a1a 100%);
            color: var(--branco);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            margin-bottom: 25px;
            color: var(--vermelho-principal);
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--vermelho-principal);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-col ul {
            list-style: none;
        }
         
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: var(--branco);
            text-decoration: none;
            transition: all 0.3s;
            opacity: 0.8;
        }
        
        .footer-col ul li a:hover {
            color: var(--vermelho-principal);
            opacity: 1;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--branco);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--vermelho-principal);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        
        /* Botão flutuante do WhatsApp */
        
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
            animation: none;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--branco);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
              nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .planos-grid {
                grid-template-columns: 1fr;
            }
            
            .plano-popular {
                right: -35px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .vantagens-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }