
        /* variables */
        :root {
            --primary-color: #6B8E67;       /* Sage Green for CTAs & Highlights */
            --primary-hover: #547250;
            --secondary-color: #8CA888;     /* Medium Sage Green */
            --accent-color: #B8CEB5;        /* Soft Pastel Sage */
            --light-bg: #EEF3ED;            /* Light Sage Background */
            --light-pink-subtle: #F5F8F4;   /* Very Light Sage */
            --dark-color: #1d1e2c;          /* Dark Slate for Text */
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-text: #6c757d;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(107, 142, 103, 0.1), 0 4px 6px -2px rgba(107, 142, 103, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(107, 142, 103, 0.15), 0 10px 10px -5px rgba(107, 142, 103, 0.04);
            --shadow-wordpress: 0 15px 35px rgba(29, 30, 44, 0.1);
            --font-title: 'Montserrat', 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --border-radius: 12px;
            --border-radius-lg: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

        /* Typography */
        h1, h2, h3, h4 {
            font-family: var(--font-title);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.2rem;
            text-align: center;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 12px auto 0 auto;
            border-radius: 2px;
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #3f4257;
        }

        strong {
            font-weight: 700;
            color: var(--primary-color);
        }

        .text-center {
            text-align: center;
        }

        /* Layout Utilities */
        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .bg-light {
            background-color: var(--light-bg);
        }

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

        /* Alert Top Bar */
        .top-bar {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 12px 15px;
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.15rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.3rem;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            text-align: center;
            max-width: 100%;
            animation: pulse 2s infinite;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.02);
            background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
            box-shadow: 0 15px 30px rgba(107, 142, 103, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            box-shadow: var(--shadow-sm);
            animation: none;
            font-size: 1.1rem;
            padding: 12px 30px;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(107, 142, 103, 0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(107, 142, 103, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(107, 142, 103, 0);
            }
        }

        /* Hero Section */
        .hero {
            background: radial-gradient(circle at top right, var(--light-pink-subtle) 0%, var(--white) 60%);
            padding: 30px 0 20px 0;
            border-bottom: none;
        }

        .hero-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-block;
            background-color: var(--light-bg);
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: 1px solid var(--accent-color);
        }

        .hero h1 {
            font-family: 'Montserrat', 'Arial Black', sans-serif;
            font-size: clamp(1.4rem, 5.5vw, 3.2rem);
            font-weight: 900;
            text-transform: uppercase;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            line-height: 1.15;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #4a4d6b;
            margin-bottom: 2rem;
        }

        .vsl-container {
            width: 100%;
            max-width: 340px;
            margin: 30px auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--primary-color);
            background-color: #000;
        }

        .hero-cta {
            margin-bottom: 1.5rem;
        }

        .hero-subtext {
            font-size: 0.9rem;
            color: var(--gray-text);
        }

        .hero-image-container {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(29, 30, 44, 0.15));
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .hero-image:hover {
            transform: translateY(-5px) rotate(1deg);
        }

        /* Trust Badges */
        .trust-badges {
            background-color: var(--light-bg);
            padding: 30px 0;
            border-top: 1px solid rgba(107, 142, 103, 0.1);
            border-bottom: 1px solid rgba(107, 142, 103, 0.1);
        }

        .badges-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .badge-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .badge-icon {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .badge-title {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark-color);
        }

        /* Sections General */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #585c7b;
            margin-top: 10px;
        }

        /* Grid layout for modules */
        .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .module-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 35px;
            border: 1px solid rgba(107, 142, 103, 0.1);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-wordpress);
            border-color: var(--accent-color);
        }

        .module-icon {
            background-color: var(--light-bg);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            border: 1px solid var(--accent-color);
        }

        .module-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .module-card p {
            font-size: 1rem;
            color: #555875;
            margin-bottom: 0;
        }

        /* What is it section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #3f4257;
        }

        .about-features li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Who is it for section */
        .target-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .target-card {
            background-color: #f7f8f9;
            border: 2px solid #1a1a3a;
            border-radius: 18px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .target-card-img {
            width: 70%;
            max-width: 220px;
            height: auto;
            display: block;
            margin: 30px auto 10px auto;
            object-fit: contain;
        }

        .target-card-body {
            padding: 10px 10px 30px 10px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .target-card-body h3 {
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-size: clamp(0.75rem, 2.8vw, 1.4rem);
            line-height: 1.2;
        }

        .target-card-body p {
            margin: 0;
            flex-grow: 1;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1.15rem;
            line-height: 1.7;
            color: #000;
        }

        .target-card:hover {
            transform: translateY(-5px);
            border-color: #00b4d8;
            box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
        }

        .target-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }


        .target-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .target-card p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: #000;
        }

        /* 10 Bonus Grid CSS */
        .bonus-cards-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
        }

        .bonus-item-card {
            background-color: #f7f8f9;
            border: 2px solid #1a1a3a;
            border-radius: 18px;
            padding: 30px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1 1 280px;
            max-width: 320px;
        }

        .bonus-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .bonus-item-img {
            width: 80%;
            max-width: 200px;
            height: auto;
            object-fit: contain;
            margin-bottom: 25px;
            filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
        }

        .bonus-item-pill {
            background-color: #ffc107;
            color: #000;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            padding: 8px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .bonus-item-title {
            color: var(--dark-color);
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.35rem;
            line-height: 1.3;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .bonus-item-price-old {
            color: #d9534f;
            font-size: 1.15rem;
            font-weight: 600;
            font-style: italic;
            text-decoration: line-through;
            margin-bottom: 5px;
        }

        .bonus-item-price-free {
            color: #27ae60;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .bonus-intro h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .bonus-intro p {
            color: var(--white);
            margin-bottom: 0;
            font-size: 1.15rem;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .bonus-card {
            background: var(--light-pink-subtle);
            border: 2px dashed var(--accent-color);
            border-radius: var(--border-radius);
            padding: 35px;
            position: relative;
            overflow: hidden;
        }

        .bonus-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .bonus-icon {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .bonus-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .bonus-card p {
            font-size: 0.95rem;
            color: #4a4d6b;
            margin-bottom: 15px;
        }

        .bonus-value {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--gray-text);
        }

        .bonus-value span {
            text-decoration: line-through;
            color: #e63946;
        }

        .bonus-card.super-bonus {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--light-pink-subtle) 0%, var(--light-bg) 100%);
            border: 2px solid var(--primary-color);
            box-shadow: var(--shadow-md);
        }
        @media (max-width: 992px) {
            .bonus-card.super-bonus {
                grid-column: span 1;
            }
        }

        /* Pricing Section */
        .pricing {
            background-color: var(--light-bg);
            border-top: 1px solid rgba(107, 142, 103, 0.1);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto 50px auto;
            align-items: stretch;
        }

        .pricing-card {
            background-color: var(--white);
            border: 2px solid rgba(107, 142, 103, 0.1);
            border-radius: var(--border-radius-lg);
            padding: 50px 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .pricing-card.popular {
            border: 3px solid var(--primary-color);
            box-shadow: var(--shadow-wordpress);
            transform: scale(1.03);
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #ffb703, #6B8E67);
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 0.85rem;
            padding: 6px 20px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: var(--shadow-sm);
        }

        .pricing-header {
            text-align: center;
            border-bottom: 1px solid #f1f2f6;
            padding-bottom: 25px;
            margin-bottom: 25px;
        }

        .pricing-title {
            font-size: 1.6rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .pricing-desc {
            font-size: 0.95rem;
            color: var(--gray-text);
            margin-bottom: 15px;
        }

        .price-was {
            font-size: 1rem;
            text-decoration: line-through;
            color: #e63946;
            margin-bottom: 5px;
        }

        .price-now {
            font-family: var(--font-title);
            color: var(--dark-color);
            font-weight: 900;
            margin-bottom: 5px;
        }

        .price-now small {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .price-now span {
            font-size: 3rem;
        }

        .price-installments {
            font-size: 1.15rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        .pricing-features li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 15px;
            font-size: 1rem;
            text-align: left;
        }

        .pricing-features li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .pricing-features li.excluded {
            color: var(--gray-text);
        }

        .pricing-features li.excluded i {
            color: #d1d3e2;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-note {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-top: 15px;
        }

        /* Guarantee Section */
        .guarantee-container {
            background-color: var(--white);
            border: 1px solid rgba(107, 142, 103, 0.15);
            border-radius: var(--border-radius);
            padding: 40px;
            display: grid;
            grid-template-columns: 0.3fr 1.7fr;
            gap: 30px;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shadow-sm);
        }

        .guarantee-seal {
            font-size: 4.5rem;
            color: #ffb703;
            text-align: center;
        }

        .guarantee-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .guarantee-content p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: #555875;
        }

        /* FAQ Section */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--white);
            border: 1px solid rgba(107, 142, 103, 0.1);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 22px 30px;
            background-color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: var(--transition);
        }

        .faq-question h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0;
            color: var(--dark-color);
            padding-right: 20px;
        }

        .faq-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background-color: var(--white);
            border-top: 0 solid rgba(107, 142, 103, 0.05);
        }

        .faq-answer-inner {
            padding: 25px 30px;
            font-size: 1rem;
            color: #4a4d6b;
            border-top: 1px solid #E2EBE0;
        }

        .faq-answer-inner p:last-child {
            margin-bottom: 0;
        }

        .faq-item.active {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .faq-item.active .faq-question {
            background-color: var(--light-pink-subtle);
        }

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

        /* Author Section */
        .author-grid {
            display: grid;
            grid-template-columns: 0.7fr 1.3fr;
            gap: 50px;
            align-items: center;
        }

        .author-img-container {
            display: flex;
            justify-content: center;
        }

        .author-img {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--accent-color);
            box-shadow: var(--shadow-md);
        }

        .author-content h2 {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .author-content h2::after {
            margin: 12px 0 0 0;
        }

        .author-content p {
            font-size: 1rem;
        }

        /* Footer Section */
        .footer {
            background-color: #12131a;
            padding: 60px 0 30px 0;
            color: #8c8ea7;
            font-size: 0.85rem;
            border-top: 3px solid var(--primary-color);
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-disclaimer {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .footer-links {
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #c5c7db;
            text-decoration: none;
            margin: 0 12px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-copyright {
            color: #555770;
            border-top: 1px solid #1c1d29;
            padding-top: 20px;
        }

        /* Countdown Timer Styling */
        .timer-container {
            background-color: var(--white);
            border: 2px solid var(--primary-color);
            border-radius: var(--border-radius);
            padding: 25px;
            max-width: 600px;
            margin: 0 auto 40px auto;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .timer-title {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .timer-segment {
            background-color: var(--light-bg);
            border: 1px solid var(--accent-color);
            border-radius: 8px;
            min-width: 70px;
            padding: 10px;
        }

        .timer-val {
            font-family: var(--font-title);
            font-size: 2rem;
            font-weight: 900;
            color: var(--dark-color);
            line-height: 1;
        }

        .timer-lbl {
            font-size: 0.75rem;
            color: var(--gray-text);
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 4px;
        }

        /* Responsiveness */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .hero-content {
                max-width: 100%;
                margin: 0 auto;
            }



            .badges-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .modules-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .target-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bonus-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
            }

            .pricing-card.popular {
                transform: none;
            }

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

            .author-content h2 {
                text-align: center;
            }

            .author-content h2::after {
                margin: 12px auto 0 auto;
            }

            .guarantee-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 50px 0;
            }

            h1 {
                font-size: 2.1rem;
            }

            h2 {
                font-size: 1.8rem;
            }



            .btn {
                font-size: 1.1rem;
                padding: 15px 30px;
            }

            .badges-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .target-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px; /* Slightly smaller gap on mobile */
            }

            .pricing-card {
                padding: 40px 20px;
            }

            .timer-val {
                font-size: 1.6rem;
            }

            .timer-segment {
                min-width: 60px;
                padding: 8px;
            }

            .faq-question {
                padding: 18px 20px;
            }

            .faq-question h3 {
                font-size: 1.05rem;
            }

            .comp-container {
                max-width: 850px;
                margin: 0 auto;
                background: #fff;
                border-radius: 15px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
                border: 1px solid #e0e0e0;
                overflow: hidden;
            }
            .comp-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
            .grid-header { padding: 30px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
            .grid-header.bad { background-color: #f7f9fa; border-bottom: 1px solid #e0e0e0; }
            .grid-header.good { background-color: var(--primary-color); border-bottom: 1px solid var(--primary-color); }
            
            .grid-header img { width: 220px; max-width: 100%; object-fit: contain; margin-bottom: 15px; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3)); }
            .bad-img-placeholder { width: 130px; height: 170px; background: #34495e; border-radius: 5px 12px 12px 5px; margin-bottom: 20px; position: relative; box-shadow: inset 6px 0 10px rgba(0,0,0,0.4), 5px 5px 15px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; border-left: 4px solid #bdc3c7; }
            
            .grid-header h3 { font-size: 1.5rem; margin: 0 0 5px 0; font-weight: 900; line-height: 1.2; }
            .grid-header p { font-size: 1rem; font-weight: 700; margin: 0; text-transform: uppercase; }
            
            .grid-cell { padding: 18px 25px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #e0e0e0; }
            .grid-cell.bad { border-right: 1px solid #e0e0e0; }
            .grid-cell:nth-last-child(-n+2) { border-bottom: none; }
            
            .grid-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
            .grid-text { font-size: 1.05rem; line-height: 1.4; }
            .grid-cell.bad .grid-text { color: #444; font-weight: 500; }
            .grid-cell.good { background-color: #EDF3EC; } /* Highlight background for the whole right column */
            .grid-cell.good .grid-text { color: #111; font-weight: 800; font-size: 1.15rem; } /* Bolder and slightly larger */
            .grid-cell.good .grid-icon svg { filter: drop-shadow(0 4px 6px rgba(39, 174, 96, 0.4)); } /* Glowing checks */
            
            .ribbon-best {
                position: absolute;
                top: -15px;
                right: -10px;
                background: #f1c40f;
                color: #000;
                padding: 6px 18px;
                font-weight: 900;
                font-size: 0.85rem;
                text-transform: uppercase;
                border-radius: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
                transform: rotate(4deg);
                z-index: 10;
                animation: pulse-ribbon 2s infinite;
            }
            
            @keyframes pulse-ribbon {
                0% { transform: rotate(4deg) scale(1); }
                50% { transform: rotate(4deg) scale(1.05); }
                100% { transform: rotate(4deg) scale(1); }
            }
            
            
            @media (max-width: 768px) {
                .grid-header { padding: 20px 10px; }
                .grid-cell { padding: 15px 10px; flex-direction: column; text-align: center; gap: 8px; }
                .grid-header img { width: 140px; margin-bottom: 10px; }
                .bad-img-placeholder { width: 90px; height: 120px; margin-bottom: 10px; }
                .bad-img-placeholder i { font-size: 2rem !important; margin-bottom: 5px !important; }
                .bad-img-placeholder span { font-size: 0.7rem !important; }
                .grid-header h3 { font-size: 1rem; }
                .grid-header p { font-size: 0.75rem; }
                .grid-text { font-size: 0.9rem; }
            }
    


  .imageye-selected {
    outline: 2px solid black !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
  }



                    #depoimentos-scroll::-webkit-scrollbar { display: none; }
                


                /* FAQ Customizations */
                .faq-accordion .faq-item {
                    background: transparent !important;
                    border: none !important;
                    border-top: 1px solid #e6e0ea !important;
                    border-radius: 0 !important;
                    box-shadow: none !important;
                    margin-bottom: 0 !important;
                }
                .faq-accordion .faq-item:last-child {
                    border-bottom: 1px solid #e6e0ea !important;
                }
                .faq-accordion .faq-question {
                    padding: 25px 0 !important;
                    justify-content: flex-start !important;
                    background-color: transparent !important;
                }
                .faq-accordion .faq-icon {
                    margin-right: 15px;
                    color: #111 !important;
                    font-size: 1.2rem;
                    transition: transform 0.3s;
                }
                .faq-accordion .faq-item.active .faq-icon {
                    transform: rotate(90deg) !important;
                }
                .faq-accordion .faq-answer {
                    background-color: transparent !important;
                }
                .faq-accordion .faq-answer-inner {
                    padding: 0 0 25px 35px !important;
                }
            