﻿        /* ===========================
           RESET & VARIABLES
           =========================== */
        :root {
            --red: #E53935;
            --red-dark: #C62828;
            --black: #1a1a1a;
            --white: #ffffff;
            --gray-light: #f5f5f5;
            --gray: #444444;
            --text: #1a1a1a;
            --white-text: #ffffff;
        }

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

        html {
            scroll-behavior: smooth;
        }

        @font-face {
            font-family: 'Goga';
            src: url('assets/fonts/GogaTest-Regular-BF6646d5d84f69b.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: var(--text);
            line-height: 1.5;
            background: var(--white);
            overflow-x: hidden;
        }

        /* Fontes Simuladas */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo,
        .bundle-card h3,
        .plan-header h3,
        .benefit-content h3 {
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-weight: 900;
            letter-spacing: -0.5px;
        }

        p,
        span,
        li,
        input,
        select,
        textarea,
        button {
            font-family: 'Helvetica', 'Arial', sans-serif;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ===========================
           UTILITIES & ANIMATIONS
           =========================== */
        .hidden {
            display: none !important;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--black);
            color: var(--white);
            padding: 16px 24px;
            border-radius: 4px;
            box-shadow: 4px 4px 0 var(--red);
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
            border: 2px solid var(--white);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* ===========================
           TOP BANNER
           =========================== */
        .top-banner {
            background: var(--red);
            color: var(--white);
            padding: 12px 24px;
            text-align: center;
            font-size: 14px;
            position: relative;
            transition: transform 0.3s ease;
            /* border-bottom: 2px solid var(--black); */
        }

        .top-banner.closed {
            display: none;
        }

        .top-banner a {
            text-decoration: underline;
            font-weight: 700;
            margin-left: 5px;
        }

        .banner-close {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .banner-close:hover {
            opacity: 1;
        }

        /* ===========================
           NAVBAR
           =========================== */
        .navbar {
            padding: 20px 0;
            background: var(--white);
            /* border-bottom: 3px solid var(--black); */
            position: sticky;
            top: 0;
            z-index: 100;
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 0;
            }

            .navbar .logo img {
                height: 50px;
            }
        }

        .navbar .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--black);
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-self: start;
        }

        .nav-links a {
            font-family: 'Goga', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: var(--black);
            text-transform: lowercase;
            letter-spacing: 0.2px;
            transition: color 0.2s;
        }

        /* Hide mobile-only elements on desktop */
        .nav-links .mobile-menu-logo,
        .nav-links .whatsapp-btn {
            display: none;
        }

        .nav-links a:hover {
            color: var(--red);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
            z-index: 1001;
            width: 22px;
            height: 16px;
        }

        .menu-toggle span {
            position: absolute;
            left: 0;
            display: block;
            height: 2px;
            background-color: #1a1a1a;
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .menu-toggle span:nth-child(1) {
            top: 0;
            width: 100%;
        }

        .menu-toggle span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 70%;
        }

        .menu-toggle span:nth-child(3) {
            bottom: 0;
            width: 100%;
        }

        /* Hamburger to X animation */
        .menu-toggle.active span:nth-child(1) {
            top: 50%;
            width: 100%;
            transform: translateY(-50%) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            width: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            bottom: 50%;
            width: 100%;
            transform: translateY(50%) rotate(-45deg);
        }

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

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 120px 32px 40px;
                gap: 0;
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
            }

            .nav-links a {
                font-size: 20px;
                font-weight: 700;
                padding: 20px 0;
                text-transform: lowercase;
                color: var(--black);
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
                transition: color 0.2s ease;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .nav-links a::after {
                content: '›';
                font-size: 24px;
                color: var(--gray);
                font-weight: 400;
            }

            /* Mobile menu logo */
            .nav-links .mobile-menu-logo {
                display: block;
                position: absolute;
                top: 12px;
                left: 24px;
                padding: 0;
                border: none;
            }

            .nav-links .mobile-menu-logo img {
                height: 50px;
            }

            .nav-links .mobile-menu-logo img {
                height: 50px;
            }

            .nav-links .mobile-menu-logo::after {
                display: none;
            }

            /* WhatsApp button */
            .nav-links .whatsapp-btn {
                display: flex;
                background: var(--red);
                color: white !important;
                text-align: center;
                justify-content: center;
                border-radius: 0;
                padding: 16px 24px;
                margin-top: 30px;
                font-weight: 700;
                font-size: 13px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                border: 3px solid var(--black);
                box-shadow: 4px 4px 0 var(--black);
                transition: all 0.2s ease;
            }

            .nav-links .whatsapp-btn::after {
                display: none;
            }

            .nav-links .whatsapp-btn:hover {
                transform: translate(-2px, -2px);
                box-shadow: 6px 6px 0 var(--black);
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .nav-links a:hover {
                color: var(--red);
            }

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

            /* Keep navbar visible above menu */
            .navbar {
                z-index: 1000;
            }
        }

        /* ===========================
           HERO SECTION
           =========================== */
        .hero {
            width: 100%;
            background: var(--white);
            padding: 80px 0;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .hero-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 400;
            /* font-style: italic; */
            color: var(--black);
            line-height: 1.1;
            margin-bottom: 20px;
            text-align: left;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 400;
            color: var(--black);
            line-height: 1.4;
            text-align: left;
        }

        .hero-steps {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-step {
            background: var(--white);
            border: 3px solid var(--black);
            box-shadow: 4px 4px 0 var(--black);
            padding: 16px 20px;
            text-align: left;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
        }

        .hero-step:hover {
            transform: translate(-4px, -4px);
            box-shadow: 8px 8px 0 var(--black);
        }

        .step-icon {
            width: 40px;
            height: 40px;
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-icon svg {
            width: 100%;
            height: 100%;
        }

        .hero-step p {
            font-size: 16px;
            font-weight: 600;
            color: var(--black);
            margin: 0;
            line-height: 1.4;
        }

        .hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-video-wrapper {
            width: 280px;
            aspect-ratio: 9 / 16;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .hero-side-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 900px) {
            .hero {
                padding: 30px 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-left {
                align-items: center;
            }

            .hero-title,
            .hero-subtitle {
                text-align: center;
            }

            .hero-step {
                width: 100%;
                max-width: 400px;
            }

            .hero-right {
                margin-top: 20px;
            }
        }

        /* ===========================
           VIDEO & PROCESS WRAPPER
           =========================== */
        .video-how-wrapper {
            display: flex;
            flex-direction: column;
        }

        .process {
            padding: 30px 0;
        }

        .video-placeholders {
            padding: 30px 0 45px;
        }

        .how-it-works {
            padding: 25px 0 30px;
        }

        /* Order inversion for desktop */
        @media (min-width: 969px) {
            .how-it-works {
                order: 1;
            }

            .process {
                order: 2;
            }

            .video-placeholders {
                order: 3;
            }
        }

        /* Order inversion for mobile - video before process */
        @media (max-width: 968px) {
            .how-it-works {
                order: 1;
            }

            .video-placeholders {
                order: 2;
            }

            .process {
                order: 3;
            }
        }

        .process {
            background: var(--red);
            color: var(--white);
        }

        .process-card {
            background: var(--white);
            color: var(--black);
            padding: 24px;
            margin-bottom: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            border: 3px solid var(--black);
            box-shadow: 5px 5px 0 var(--black);
            transition: transform 0.2s;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 7px 7px 0 var(--black);
        }

        .process-icon {
            font-size: 24px;
        }

        .process-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            width: 100%;
        }

        .process-header h3 {
            font-size: 18px;
            font-weight: 700;
        }

        .see-video {
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
            padding: 6px 12px;
            border: 2px solid var(--black);
            background: var(--white);
            transition: all 0.2s;
            display: inline-block;
            margin-top: 12px;
        }

        .see-video:hover {
            transform: translate(-2px, -2px);
            box-shadow: 2px 2px 0 var(--black);
        }

        .video-placeholders {
            background: var(--white);
        }

        .video-grid-desktop {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .video-wrapper {
            width: 100%;
            aspect-ratio: 9 / 16;
            background: transparent;
            overflow: hidden;
        }

        .placeholder-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-wrapper-mobile {
            display: none;
            width: 90%;
            max-width: 320px;
            aspect-ratio: 9/16;
            background: transparent;
            margin: 0 auto;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .video-grid-desktop {
                display: none;
            }

            .video-wrapper-mobile {
                display: block;
            }

            .process-card {
                flex-direction: column;
            }

            .process-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* ===========================
           HOW IT WORKS (PREVIEW)
           =========================== */
        .how-it-works {
            background: var(--red);
            color: var(--white);
            text-align: center;
        }

        .how-it-works h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 900;
            /* font-style: italic; */
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .intro-card {
            background: var(--white);
            color: var(--black);
            padding: 24px;
            max-width: 400px;
            margin: 0 auto 40px auto;
            border: 3px solid var(--black);
            box-shadow: 5px 5px 0 var(--black);
            text-align: left;
        }

        .bundle-preview {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: center;
        }

        .preview-card {
            background: var(--white);
            color: var(--black);
            padding: 28px;
            width: 280px;
            border: 3px solid var(--black);
            box-shadow: 6px 6px 0 var(--black);
            text-align: left;
            transition: transform 0.2s;
        }

        .preview-card:hover {
            transform: translateY(-5px);
        }

        .preview-card h4 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .preview-card .bundle-desc {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .btn-bundle {
            display: block;
            text-align: center;
            background: var(--black);
            color: var(--white);
            padding: 10px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            transition: opacity 0.2s;
        }

        .btn-bundle:hover {
            opacity: 0.8;
        }

        .card-1 {
            transform: rotate(-2deg);
        }

        .card-2 {
            transform: rotate(2deg);
        }

        .card-3 {
            transform: rotate(-1deg);
        }

        @media(max-width: 768px) {
            .preview-card {
                transform: none !important;
                width: 100%;
            }
        }

        /* ===========================
           WHY US (COMPARISON)
           =========================== */
        .why-us {
            padding: 40px 0;
            background: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .why-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('assets/images/why-us-desktop.jpg.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.7;
            z-index: 0;
        }

        .why-us .container {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .why-us::before {
                background-image: url('assets/images/why-us-mobile.jpg.webp');
                background-position: bottom center;
                opacity: 0.9;
            }
        }

        .why-us h2 {
            font-size: clamp(28px, 5vw, 40px);
            margin-bottom: 16px;
            /* font-style: italic; */
        }

        .why-subtitle {
            font-size: 18px;
            color: var(--black);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Comparison Cards Grid */
        .comparison-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .comparison-card {
            background: var(--white);
            border: 3px solid var(--black);
            box-shadow: 4px 4px 0 var(--black);
            padding: 28px 24px;
            text-align: left;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .comparison-card:hover {
            transform: translateY(-4px);
            box-shadow: 6px 8px 0 var(--black);
        }

        /* Featured Card (Nosso Serviço) */
        .comparison-card.featured-card {
            background: var(--red);
            border-color: var(--black);
            box-shadow: 6px 6px 0 var(--black);
            transform: scale(1.05);
            z-index: 2;
        }

        .comparison-card.featured-card:hover {
            transform: scale(1.05) translateY(-4px);
            box-shadow: 8px 10px 0 var(--black);
        }

        .comparison-card.featured-card .card-title,
        .comparison-card.featured-card .card-subtitle,
        .comparison-card.featured-card .card-features li {
            color: var(--white);
        }

        /* Card Badge */
        .card-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            padding: 6px 16px;
            white-space: nowrap;
        }

        /* Card Title */
        .card-title {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 8px;
            color: var(--black);
        }

        /* Card Subtitle */
        .card-subtitle {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .comparison-card.featured-card .card-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Card Features List */
        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            flex-grow: 1;
        }

        .card-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 14px;
            font-weight: 500;
            color: var(--black);
        }

        .comparison-card.featured-card .card-features li {
            border-bottom-color: rgba(255, 255, 255, 0.15);
        }

        .card-features li:last-child {
            border-bottom: none;
        }

        /* Check and X Icons */
        .feature-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: rgba(76, 175, 80, 0.15);
            color: #4CAF50;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .comparison-card.featured-card .feature-check {
            background: rgba(255, 255, 255, 0.25);
            color: var(--white);
        }

        .feature-x {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: rgba(229, 57, 53, 0.1);
            color: var(--red);
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Card CTA Button */
        .card-cta {
            display: block;
            text-align: center;
            background: var(--white);
            color: var(--black);
            padding: 14px 20px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 3px solid var(--black);
            box-shadow: 3px 3px 0 var(--black);
            transition: all 0.2s ease;
            margin-top: auto;
        }

        .card-cta:hover {
            transform: translate(-2px, -2px);
            box-shadow: 5px 5px 0 var(--black);
        }

        /* Responsive - Tablet */
        @media (max-width: 900px) {
            .comparison-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .comparison-card.featured-card {
                transform: scale(1);
                grid-column: span 2;
                order: -1;
            }

            .comparison-card.featured-card:hover {
                transform: translateY(-4px);
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 600px) {
            .comparison-cards {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 8px;
            }

            .comparison-card.featured-card {
                grid-column: span 1;
            }

            .comparison-card {
                padding: 24px 20px;
            }

            .card-title {
                font-size: 20px;
            }

            .card-features li {
                font-size: 13px;
                padding: 8px 0;
            }
        }

        /* ===========================
           BENEFITS
           =========================== */
        .benefits {
            padding: 40px 0;
            background: var(--white);
            text-align: center;
        }

        .benefits h2 {
            font-size: clamp(28px, 5vw, 40px);
            font-weight: 900;
            /* font-style: italic; */
            margin-bottom: 50px;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .benefit-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            text-align: left;
            width: 100%;
            justify-content: center;
        }

        @media(max-width: 600px) {
            .benefit-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            color: var(--red);
        }

        .benefit-content h3 {
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .benefit-content span {
            font-weight: 400;
        }

        .benefit-content p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
        }

        /* ===========================
           BUNDLES / PRICING (OLD STYLE)
           =========================== */
        .bundles {
            background: var(--gray-light);
            padding: 40px 0;
            text-align: center;
        }

        .bundles h2 {
            font-size: clamp(28px, 5vw, 40px);
            /* font-style: italic; */
            margin-bottom: 16px;
        }

        .bundles-subtitle {
            color: var(--gray);
            margin-bottom: 40px;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }

        .period-tabs {
            display: inline-flex;
            background: var(--white);
            border: 3px solid var(--black);
            box-shadow: 6px 6px 0 var(--black);
            overflow: hidden;
        }

        .period-btn {
            background: var(--white);
            border: none;
            border-right: 2px solid var(--black);
            padding: 18px 28px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Helvetica', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            position: relative;
            color: var(--black);
        }

        .period-btn:last-child {
            border-right: none;
        }

        .period-btn:hover {
            background: var(--gray-light);
        }

        .period-btn.active {
            background: var(--red);
            color: var(--white);
        }

        .period-btn.active:hover {
            background: var(--red-dark);
        }

        .period-label {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .period-badge {
            background: var(--red);
            color: var(--white);
            padding: 4px 8px;
            font-size: 10px;
            font-weight: 700;
            border: 2px solid var(--black);
            box-shadow: 2px 2px 0 var(--black);
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .period-btn.active .period-badge {
            background: var(--white);
            color: var(--red);
            border-color: var(--black);
        }

        @media (max-width: 768px) {
            .period-tabs {
                width: 100%;
                max-width: 100%;
            }

            .period-btn {
                flex: 1;
                padding: 12px 8px;
                font-size: 13px;
                gap: 4px;
            }

            .period-label {
                font-size: 13px;
            }

            .period-badge {
                font-size: 9px;
                padding: 2px 4px;
            }

            .hide-mobile {
                display: none;
            }
        }

        /* CARDS STYLE REVERTED */
        .bundle-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 60px;
        }

        .bundle-card {
            background: var(--white);
            padding: 50px 40px;
            border: 4px solid var(--black);
            box-shadow: 8px 8px 0 var(--black);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .bundle-card:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0 var(--black);
        }

        /* O CARD DO MEIO (FEATURED) PRETO */
        .bundle-card.featured {
            background: var(--black);
            color: var(--white);
            transform: scale(1.05);
            z-index: 2;
        }

        .bundle-card.featured h3,
        .bundle-card.featured .price,
        .bundle-card.featured .bundle-features li,
        .bundle-card.featured .bundle-features strong {
            color: var(--white);
        }

        .bundle-card.featured .bundle-tagline,
        .bundle-card.featured .feature-detail,
        .bundle-card.featured .currency {
            color: rgba(255, 255, 255, 0.7);
        }

        .bundle-card.featured .btn-request {
            background: var(--white);
            color: var(--black);
        }

        .bundle-card.featured:hover {
            transform: scale(1.05) translate(-4px, -4px);
            box-shadow: 16px 16px 0 var(--black);
        }

        /* Internals */
        .bundle-card h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .bundle-card h3 .emoji {
            font-size: 24px;
            display: inline-flex;
            align-items: center;
        }

        .bundle-tagline {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 32px;
            line-height: 1.5;
            min-height: 45px;
        }

        .bundle-price {
            margin-bottom: 16px;
            padding-bottom: 24px;
            border-bottom: 2px solid #eee;
        }

        .bundle-card.featured .bundle-price {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .bundle-price .price {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -2px;
            color: var(--black);
        }

        .bundle-card.featured .bundle-price .price {
            color: var(--white);
        }

        .bundle-price .currency {
            font-size: 20px;
            color: var(--gray);
            margin-left: 4px;
            font-weight: 400;
        }

        .billing-info {
            font-size: 13px;
            color: var(--gray);
            margin-top: 8px;
            margin-bottom: 24px;
            min-height: 20px;
        }

        .bundle-features {
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .bundle-features li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 14px;
            font-size: 15px;
            color: var(--text);
            line-height: 1.6;
        }

        .check-icon {
            color: var(--black);
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
            width: 20px;
            height: 20px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .bundle-card.featured .check-icon {
            background: var(--white);
            color: var(--black);
        }

        .feature-detail {
            display: block;
            color: var(--gray);
            font-size: 13px;
            font-weight: 400;
            margin-top: 4px;
        }

        .btn-request {
            display: block;
            text-align: center;
            background: var(--red);
            color: var(--white);
            padding: 16px 32px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 3px solid var(--black);
            box-shadow: 4px 4px 0 var(--black);
            transition: all 0.2s ease;
            cursor: pointer;
            width: 100%;
        }

        .btn-request:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--black);
        }

        /* ===========================
           PRICING TABLE
           =========================== */
        .pricing-table-wrapper {
            margin-top: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            background: var(--white);
            border-radius: 0;
            box-shadow: 0 0 0 var(--black);
            overflow: hidden;
            border: 1px solid #eee;
        }

        .table-title {
            padding: 20px;
            font-size: 20px;
            text-align: center;
            background: var(--gray-light);
            border-bottom: 1px solid #eee;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 16px;
            border-bottom: 1px solid #eee;
            text-align: center;
        }

        .pricing-table th {
            background: var(--white);
            color: var(--gray);
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-table .featured-col {
            background: rgba(229, 57, 53, 0.03);
            border-left: 1px solid #eee;
            border-right: 1px solid #eee;
        }

        .pricing-table .feature-name {
            text-align: left;
            font-weight: 600;
            color: var(--black);
        }

        .plan-price-small {
            display: block;
            margin-top: 5px;
            color: var(--black);
            font-size: 18px;
            font-weight: 700;
        }

        .popular-badge-small {
            background: var(--red);
            color: var(--white);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            text-transform: uppercase;
        }

        .table-cta {
            display: inline-block;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .table-cta.featured {
            background: var(--red);
            color: white;
        }

        .table-cta:not(.featured) {
            border: 2px solid var(--black);
            color: var(--black);
        }

        .table-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .pricing-table-wrapper {
                display: none;
            }

            .bundle-card.featured {
                transform: none;
            }

            .bundle-cards {
                grid-template-columns: 1fr;
            }
        }

        /* ===========================
           FAQ
           =========================== */
        .faq {
            padding: 40px 0 80px;
            background: var(--white);
            text-align: center;
        }

        .faq h2 {
            font-size: clamp(28px, 5vw, 40px);
            margin-bottom: 40px;
            color: var(--black);
        }

        .faq-list {
            max-width: 700px;
            margin: 0 auto;
            text-align: left;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 0;
            font-size: 18px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--black);
        }

        .faq-icon {
            transition: transform 0.3s;
            color: var(--red);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            opacity: 1;
            padding-bottom: 20px;
        }

        .faq-answer p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* ===========================
           CONTACT
           =========================== */
        .contact {
            padding: 100px 0;
            background: var(--gray-light);
            text-align: center;
        }

        .contact h2 {
            font-size: clamp(28px, 5vw, 40px);
            margin-bottom: 16px;
        }

        .contact .highlight {
            color: var(--red);
        }

        .contact-subtitle {
            color: var(--gray);
            margin-bottom: 40px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 0;
            /* Sharp input for Brutalism */
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.2s;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--red);
            box-shadow: 4px 4px 0 var(--black);
            transform: translate(-2px, -2px);
        }

        .btn-submit {
            width: 100%;
            background: var(--red);
            color: var(--white);
            border: 3px solid var(--black);
            padding: 16px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 0;
            transition: all 0.2s;
            box-shadow: 4px 4px 0 var(--black);
        }

        .btn-submit:hover {
            background: var(--red-dark);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--black);
        }

        @media(max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* ===========================
           FOOTER
           =========================== */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 0 40px;
            text-align: center;
            border-top: 8px solid var(--red);
        }

        .footer-content {
            margin-bottom: 60px;
        }

        .footer .logo {
            display: inline-block;
            margin-bottom: 24px;
        }

        .footer .logo img {
            display: block;
            margin: 0 auto;
        }

        .footer-brand p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 300px;
            margin: 0 auto 32px;
            line-height: 1.4;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .footer-links a {
            color: var(--white);
            font-family: 'Goga', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s;
            opacity: 0.6;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--red);
        }

        .footer-bottom {
            margin-top: 80px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.3);
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        .extra-badge {
            background: var(--red);
            color: #fff;
            display: inline-block;
            padding: 6px 10px;
            margin-top: 8px;
            border: 2px solid var(--black);
            box-shadow: 3px 3px 0 var(--black);
            font-weight: 700;
            font-size: 11px;
            line-height: 1.2;
            text-align: center;
        }