/* GLOBAIS E RESET */
        :root {
            --color-primary: #ff6b35;
            --color-secondary: #ff8c42;
            --color-dark: #1a1a1a;
            --color-light: #f5f5f5;
            --color-white: #ffffff;
            --color-orange-dark: #e85d2a;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-dark);
            line-height: 1.6;
            background-color: var(--color-white);
        }

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

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
            color: var(--color-dark);
        }

        .white-text {
            color: var(--color-white);
        }

        .section-padded {
            padding: 80px 0;
        }

        /* BOTÕES */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background-color: var(--color-orange-dark);
            color: var(--color-white);
        }

        .btn-secondary {
            background-color: transparent;
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .btn-secondary:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        /* HEADER E NAVEGAÇÃO */
        .header {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: padding 0.3s, box-shadow 0.3s;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.5em;
            font-weight: 900;
            color: var(--color-primary);
            transition: font-size 0.3s;
        }

        .nav-list {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-list a {
            color: var(--color-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-list a:hover {
            color: var(--color-primary);
        }

        .btn-nav {
            background-color: var(--color-primary);
            color: var(--color-white);
            padding: 8px 20px;
            border-radius: 5px;
        }

        .btn-nav:hover {
            background-color: var(--color-orange-dark);
            color: var(--color-white);
        }

        /* Menu Hamburguer Mobile */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-white);
            font-size: 1.5em;
            cursor: pointer;
            padding: 5px;
        }

        /* HERO SECTION */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url(https://images.unsplash.com/photo-1552674605-db6ffd4facb5?w=1600) no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        .hero-content {
            color: var(--color-white);
            max-width: 600px;
        }

        .hero-content h2 {
            font-family: var(--font-heading);
            font-size: 1.5em;
            color: var(--color-primary);
            margin-bottom: 10px;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 3.5em;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        /* FLOW SECTION */
        .flow-section {
            background-color: var(--color-light);
        }

        .flow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .flow-card {
            background-color: var(--color-white);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .flow-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        }

        .flow-card i {
            font-size: 3em;
            color: var(--color-primary);
            margin-bottom: 15px;
        }

        .flow-card h3 {
            font-family: var(--font-heading);
            margin-bottom: 10px;
        }

        /* PLANS SECTION */
        .plans-section {
            background-color: var(--color-dark);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .plan-card {
            background-color: var(--color-white);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .featured-plan {
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
            color: var(--color-white);
            border: 2px solid var(--color-primary);
        }

        .featured-plan h3, .featured-plan .price {
            color: var(--color-primary);
        }

        .plan-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8em;
            margin-bottom: 10px;
            color: var(--color-primary);
        }

        .plan-card .price {
            font-family: var(--font-heading);
            font-size: 2.5em;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .subtitle-plan {
            font-size: 0.9em;
            margin-bottom: 20px;
            font-style: italic;
        }

        .plan-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .plan-card li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            font-size: 1.1em;
        }

        .plan-card li i {
            margin-right: 10px;
            color: var(--color-primary);
        }

        .featured-plan li {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .featured-plan li i {
            color: var(--color-primary);
        }

        /* RESULTS SECTION */
        .results-section {
            background-color: var(--color-white);
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .stat-box {
            flex: 1;
            min-width: 200px;
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 3em;
            font-weight: 900;
            color: var(--color-primary);
            line-height: 1;
        }

        .stat-label {
            text-transform: uppercase;
            font-weight: 700;
            color: var(--color-dark);
        }

        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-box {
            padding: 40px;
            border-radius: 8px;
            background-color: var(--color-light);
            text-align: center;
            border-left: 5px solid var(--color-primary);
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--color-primary);
        }

        /* FAQ SECTION */
        .faq-section {
            background-color: var(--color-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--color-white);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 20px;
            background-color: var(--color-white);
            border: none;
            font-family: var(--font-heading);
            font-size: 1.1em;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: var(--color-light);
        }

        .faq-question i {
            color: var(--color-primary);
            transition: transform 0.3s;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 20px 20px;
        }

        /* CTA SECTION */
        .cta-section {
            background-color: var(--color-primary);
            text-align: center;
            padding: 60px 20px;
            color: var(--color-white);
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .cta-section p {
            margin-bottom: 30px;
            font-size: 1.1em;
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 1.1em;
        }

        /* RODAPÉ */
        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 30px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-info h3 {
            font-family: var(--font-heading);
            font-size: 1.3em;
            font-weight: 900;
            color: var(--color-primary);
            margin-bottom: 10px;
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-contact p {
            margin: 5px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--color-primary);
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--color-white);
            font-size: 1.5em;
            transition: color 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            color: var(--color-primary);
            background-color: rgba(255,107,53,0.1);
        }

        /* ANIMAÇÕES */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.active {
            opacity: 1;
            transform: translateY(0);
        }

        .header-scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-scrolled .logo {
            font-size: 1.3em;
        }

        /* Delays para animações */
        .flow-card:nth-child(1) { transition-delay: 0s; }
        .flow-card:nth-child(2) { transition-delay: 0.1s; }
        .flow-card:nth-child(3) { transition-delay: 0.2s; }

        .plan-card:nth-child(1) { transition-delay: 0.1s; }
        .plan-card:nth-child(2) { transition-delay: 0.3s; }
        .plan-card:nth-child(3) { transition-delay: 0.5s; }

        /* RESPONSIVIDADE */
        @media (max-width: 900px) {
            .flow-grid {
                grid-template-columns: 1fr;
            }
            .plans-grid {
                grid-template-columns: 1fr;
            }
            .featured-plan {
                transform: scale(1);
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                background-color: var(--color-dark);
                transition: left 0.3s;
                padding: 20px;
            }

            .nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .nav-list li {
                width: 100%;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5em;
            }

            .section-title {
                font-size: 2em;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-contact {
                width: 100%;
            }

            .footer-contact p {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }
        }