@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@600&display=swap');


:root {
            --primary-color: #ff6b00;
            --secondary-color: #0f0f32;
            --text-color: #e0e1dd;
            --card-bg: #1b263b;
            --light-blue: #415a77;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--secondary-color);
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 70px; 
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(13, 27, 42, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--light-blue);
            z-index: 999;
            padding: 0 1.5rem; 
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Lexend Mega', sans-serif;
            font-size: 1.25rem; 
            font-weight: 600;
            color: #ea580c;
        }

        .cta-button {
            background-color: var(--primary-color);
            color: #fff;
            padding: 0.6rem 1.2rem; 
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: #e65c00;
        }

        .hero {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            align-items: center;
            gap: 2rem;
            padding: 4rem 0;
        }

        .hero-content {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }

        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-text h1 span {
            color: var(--primary-color);
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .hero-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .hero-benefits li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        .hero-benefits li:nth-child(1) { animation-delay: 0.2s; }
        .hero-benefits li:nth-child(2) { animation-delay: 0.4s; }
        .hero-benefits li:nth-child(3) { animation-delay: 0.6s; }

        .hero-benefits svg {
            color: var(--primary-color);
            margin-right: 0.5rem;
            width: 24px;
            height: 24px;
        }

        .phone-mockup {
            grid-column: 2 / 3;
            grid-row: 1 / 3; 
            position: relative;
            justify-self: center;
            align-self: center;
        }
        
        .phone-mockup img {
            max-width: 300px;
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-nav {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: space-between; 
        }

        .nav-button {
            background-color: var(--card-bg);
            color: var(--text-color);
            padding: 0.8rem 1rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            flex-grow: 1; 
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border: 1px solid var(--light-blue);
        }

        .nav-button:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px); 
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
        }

        .section {
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--light-blue);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
        }

        .benefit-card .icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
        .benefit-card h3 { margin-bottom: 0.5rem; }

        /* Features Section */
        .feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            margin-bottom: 4rem;
            padding-top: 80px; /* Offset for anchor link */
            margin-top: -80px; /* Negative margin to compensate padding */
        }
        .feature:last-child { margin-bottom: 0; }
        .feature:nth-child(even) .feature-text { order: 2; }
        .feature:nth-child(even) .feature-image { order: 1; }
        .feature-text h3 { font-size: 1.8rem; color: var(--primary-color); }
        .feature-image img {
            max-width: 100%; /* Changed to be responsive */
            width: 280px; /* Added a fixed width for consistency */
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            animation: float 4s ease-in-out infinite alternate;
        }

        /* Plans Section */
        .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
        .plan-card { background-color: var(--card-bg); padding: 2rem; border-radius: 15px; display: flex; flex-direction: column; border: 2px solid var(--light-blue); transition: transform 0.3s ease, border-color 0.3s ease; }
        .plan-card.premium { border-color: var(--primary-color); transform: scale(1.05); }
        .plan-card:hover { transform: scale(1.03); border-color: var(--primary-color); }
        .plan-card.premium:hover { transform: scale(1.08); }
        .plan-card h3 { font-size: 1.5rem; text-align: center; }
        .plan-card .price { font-size: 2.5rem; font-weight: 700; text-align: center; margin: 1rem 0; color: var(--primary-color); }
        .plan-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-color); }
        .plan-cta { background-color: var(--light-blue); color: #fff; padding: 0.75rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; text-align: center; margin-top: auto; transition: background-color 0.3s ease; }
        .plan-card.premium .plan-cta { background-color: var(--primary-color); }
        .plan-cta:hover { background-color: var(--primary-color); }

        /* FAQ Section */
        .faq-item { background-color: var(--card-bg); margin-bottom: 1rem; border-radius: 10px; border-left: 5px solid var(--primary-color); }
        .faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
        .faq-question::after { content: '+'; font-size: 1.5rem; transition: transform 0.3s ease; }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; padding: 0 1.5rem; }
        .faq-item.active .faq-answer { max-height: 200px; padding: 0 1.5rem 1.5rem; }
        .footer { background-color: #111827; color: white; padding-top: 2.5rem; padding-bottom: 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
        .footer-logo-container { width: 6rem; height: 6rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
        .footer-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
        .footer-text { color: #9CA3AF; margin-bottom: 1.5rem; max-width: 28rem; }
        .social-links { display: flex; gap: 1rem; }
        .social-link { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; transition: background-color 0.3s; }
        .social-link span { font-size: 0.875rem; }
        .footer-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
        .contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
        .contact-item { display: flex; align-items: flex-start; }
        .contact-icon { color: #F97316; margin-right: 0.75rem; margin-top: 4px; }
        .contact-text-main { font-weight: 500; }
        .contact-text-sub { color: #9CA3AF; font-size: 0.875rem; }
        .footer-bottom { border-top: 1px solid #374151; margin-top: 2rem; padding-top: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
        .footer-bottom-text { color: #9CA3AF; font-size: 0.875rem; margin-bottom: 1rem; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; font-size: 0.875rem; }
        .footer-link { color: #9CA3AF; transition: color 0.3s; text-decoration: none; }
        .footer-link:hover { color: white; }
        
        /* --- Animations --- */
        @keyframes fadeIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
        
        /* --- RESPONSIVE DESIGN --- */
        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-col-span-2 { grid-column: span 2 / span 2; }
            .footer-bottom { flex-direction: row; }
            .footer-bottom-text { margin-bottom: 0; }
        }
        
        /* Medium screens and down */
        @media (max-width: 992px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content, .hero-nav, .phone-mockup {
                grid-column: 1 / -1; /* Ocupa a largura total */
                grid-row: auto; /* Reseta a linha */
            }
            .hero-content { order: 2; }
            .phone-mockup { order: 1; margin-bottom: 2rem; }
            .hero-nav { 
                order: 3;
                flex-direction: row;
                flex-wrap: wrap; /* Permite que os botões quebrem a linha */
                justify-content: center;
            }
            .feature, .feature:nth-child(even) { grid-template-columns: 1fr; text-align: center; }
            .feature:nth-child(even) .feature-text, .feature:nth-child(even) .feature-image { order: 0; }
            .feature-image { margin: 0 auto 2rem auto; }
            .plan-card.premium { transform: scale(1); }
        }

        /* Small screens (tablets and phones) */
        @media (max-width: 768px) {
            .container { padding: 1.5rem; }
            .section { padding: 3rem 0; }
            .hero-text h1 { font-size: 2.25rem; }
            .hero-text p { font-size: 1rem; }
            .section-title { font-size: 2rem; }
            .feature { padding-top: 70px; margin-top: -70px; }
            .plans-grid { justify-content: center; }
        }

        /* Extra small screens (phones) */
        @media (max-width: 480px) {
            .container { padding: 1rem; }
            .logo { font-size: 1.1rem; }
            .cta-button { padding: 0.5rem 1rem; font-size: 0.8rem; }
            .phone-mockup img { max-width: 240px; }
            .nav-button {
                width: 45%; /* Ocupa quase metade da tela */
                flex-grow: 0;
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .benefit-card { padding: 1.5rem; }
        }