:root {
    --primary: #E65100;
    --secondary: #FF9800;
    --accent: #D84315;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fdfbf7;
    --white: #ffffff;
    --gradient-btn: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 35px rgba(230, 81, 0, 0.2);
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 40px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top center, #FFF3E0 0%, #fff 70%);
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: #FFF3E0;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tag.promo {
    background: #fff3cd;
    color: #856404;
    font-size: 0.85rem;
    border: 1px solid #ffeeba;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--accent);
    background: linear-gradient(120deg, #ffd70040 0%, #ffd70040 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image-container {
    position: relative;
    margin: 30px auto;
    max-width: 400px;
}

.hero-slideshow {
    display: grid;
    grid-template-areas: "stack";
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-slideshow:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    grid-area: stack;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    /* Ensure radius matches if overflow fails in some browsers */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-img.active {
    opacity: 1;
    z-index: 1;
}

.badge-overlay {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    animation: bounce 3s infinite;
}

.badge-overlay span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.badge-overlay small {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.hero-features {
    list-style: none;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    text-align: left;
}

.hero-features li {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.3s ease;
}

.hero-features li:hover {
    transform: translateX(5px);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gradient-btn);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(221, 36, 118, 0.3);
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:active {
    transform: scale(0.95);
}

.btn-lg {
    width: 100%;
    max-width: 350px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Social Proof */
.social-proof {
    padding: 30px 0;
    text-align: center;
    background: var(--white);
}

.avatar-stack {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.avatar-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.testimonials-gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 0;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-gallery::-webkit-scrollbar {
    display: none;
}

.testimonials-gallery img {
    flex: 0 0 auto;
    width: 220px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: center;
    border: 2px solid var(--white);
    transition: transform 0.3s ease;
}

.testimonials-gallery img:hover {
    transform: scale(1.02);
}

/* Benefits Grid */
.benefits-grid {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: #FFF3E0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Steps */
.steps-section {
    padding: 60px 0;
    background-color: #fcece0;
}

.step {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230, 81, 0, 0.1);
    line-height: 0.8;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Deliverables */
.deliverables {
    padding: 60px 0;
}

.module {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
}

.check-icon {
    font-size: 1.5rem;
}

.module h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* Pain Points */
.pain-points {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.pain-points .section-title {
    color: var(--white);
}

.pain-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
}

.pain-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pain-list i {
    color: #ff4444;
}

.solution-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    font-weight: 600;
}

/* Offer */
.offer-section {
    padding: 60px 0;
    background: radial-gradient(circle, #fff 0%, #FFF3E0 100%);
}

.price-box {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--primary);
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.bonus-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    font-size: 0.9rem;
}

.bonus-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.total-value {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.final-price .big-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.final-price .installments {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Basic Offer Box (Churcha Style) */
.basic-offer-box {
    max-width: 420px;
    margin: 40px auto 0;
    padding: 25px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    color: #6c757d;
}

.basic-offer-box h4 {
    color: #495057;
    font-size: 1.1rem;
    margin: 10px 0 5px;
}

.basic-title {
    font-size: 0.9rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.basic-desc {
    font-size: 0.85rem;
    color: #868e96;
    margin-bottom: 20px;
    font-style: italic;
}

.basic-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 20px;
}

.basic-btn {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    transition: background 0.3s ease;
    border: 1px solid #ced4da;
    font-size: 0.95rem;
}

.basic-btn:hover {
    background: #dee2e6;
    color: #212529;
}

/* Roleta */
.roleta-section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 30px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 50%;
    border: 10px solid var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.segment {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(60deg * var(--i)));
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.segment span {
    transform: rotate(45deg);
    /* Adjust text inside segment */
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 20%;
    top: 30%;
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    border: 4px solid var(--primary);
    cursor: pointer;
    z-index: 10;
    font-weight: 800;
    color: var(--primary);
}

.stopper {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary);
    z-index: 11;
}

/* Author Bio */
.author-bio {
    background: var(--bg-light);
    padding: 60px 0;
}

.bio-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.bio-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}

.bio-text {
    flex: 1;
}

/* FAQ */
/* FAQ Redesign */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq .section-title {
    margin-bottom: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Soft initial shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* For smooth transitions */
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.15);
    /* Orange hint on active */
    border-color: rgba(230, 81, 0, 0.3);
}

.faq-btn {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-btn i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Bouncy rotation */
}

.faq-item.active .faq-btn i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
    padding: 0 25px;
    background: var(--white);
    /* Ensure bg is white */
}

.faq-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    padding-top: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
    /* Allow enough height for content */
    padding-bottom: 10px;
    /* Add some padding at bottom when open */
    border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

/* Footer */
/* Footer */
.footer {
    padding: 60px 0 40px;
    text-align: center;
    background: #1a1a1a;
    /* Darker footer */
    color: #888;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 15px;
}

.disclaimer-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-block p {
    margin-bottom: 10px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    text-align: center;
    display: none;
    /* Show on scroll via JS or always on mobile */
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .bio-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(221, 36, 118, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Gallery Navigation Buttons */
.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn {
    background: var(--primary);
    /* Solid orange background */
    border: 3px solid var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.4);
    /* Stronger shadow */
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-orange 2s infinite;
    /* Subtle pulse to attract attention */
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 81, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0);
    }
}

.nav-btn:hover {
    transform: scale(1.15);
    background: var(--accent);
    box-shadow: 0 15px 30px rgba(230, 81, 0, 0.6);
    animation: none;
    /* Stop pulsing on hover */
}

.nav-btn.prev {
    margin-right: 10px;
}

.nav-btn.next {
    margin-left: 10px;
}

/* Transformation Section */
.transformation-section {
    margin: 40px 0 60px;
    text-align: center;
}

.transformation-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.transformation-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.transformation-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.transformation-card {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.transformation-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

.before-img {
    border-color: #ffebee;
}

.after-img {
    border-color: #e8f5e9;
}

.badge-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.badge-before {
    background: #ff4444;
    left: -10px;
}

.badge-after {
    background: #00c853;
    right: -10px;
}

.caption {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-message {
    color: #e65100;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-green {
    background: linear-gradient(135deg, #00c853 0%, #009624 100%);
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
}

@media (max-width: 768px) {
    .badge-before {
        left: 10px;
    }

    .badge-after {
        right: 10px;
    }
}

/* Steps Section Redesign */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.step-image {
    flex: 0 0 40%;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
    z-index: 2;
}

.step-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Alternate layout for desktop */
.step-card:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
    }

    .step-card:nth-child(even) {
        flex-direction: column;
    }

    .step-image {
        width: 100%;
        height: 200px;
    }

    .step-content {
        padding: 30px 20px;
        text-align: center;
    }
}

/* Deliverables Redesign */
.deliverables {
    padding: 60px 0;
    background: #fff;
}

.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.deliverable-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deliverable-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.1);
    border-color: rgba(230, 81, 0, 0.2);
}

.deliverable-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-btn);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deliverable-card:hover::before {
    opacity: 1;
}

.deliverable-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.deliverable-content {
    flex: 1;
}

.deliverable-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.deliverable-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.value-tag {
    text-align: right;
    padding-left: 20px;
    border-left: 1px solid #eee;
    margin-left: 20px;
    min-width: 100px;
}

.value-tag small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

.value-tag span {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .deliverable-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .value-tag {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
        width: 100%;
        text-align: center;
    }

    .deliverable-card:hover {
        transform: translateY(-5px);
    }
}

/* Pain Points Redesign */
.pain-points {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pain-points .section-title {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 2.2rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: left;
}

.checklist-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.checklist-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.checklist-item .check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.checklist-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.pain-footer {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pain-alert {
    color: #ff5252;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pain-solution {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
}

.pain-solution strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .pain-points .section-title {
        font-size: 1.8rem;
    }
}

.disclaimer-text {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Guarantee Section Styles (Premium Redesign) */
.guarantee-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fdfbf7 0%, #ffffff 100%);
}

.premium-box {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* High-end shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
    /* Important for the badge to pop out */
}

/* Golden/Green Stroke Effect */
.premium-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(135deg, #27AE60, #a5d6a7);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

/* Seal Badge */
.seal-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27AE60 0%, #1B5E20 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.4);
    border: 4px solid #fff;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.seal-inner {
    text-align: center;
    color: #fff;
    line-height: 1;
}

.seal-inner .days {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
}

.seal-inner .label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.guarantee-box h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin: 40px 0 25px;
    /* Spacing for the badge */
}

.lead-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.guarantee-content p strong {
    color: #2e7d32;
    /* Trust Green */
}

.sub-text {
    font-size: 0.95rem;
    color: #888;
    margin-top: -10px;
    margin-bottom: 30px;
}

/* Trust Badges Grid */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #eee;
}

.t-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #555;
    width: 120px;
}

.t-badge i {
    font-size: 1.8rem;
    color: #27AE60;
    background: #e8f5e9;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.t-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-box {
        padding: 50px 25px 30px;
        margin-top: 20px;
    }

    .guarantee-box h2 {
        font-size: 1.8rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .t-badge {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        background: #fdfbf7;
        padding: 10px;
        border-radius: 10px;
    }

    .t-badge i {
        padding: 10px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .t-badge span {
        font-size: 1rem;
    }

}

/* Exit Intent Popup Styles */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.visible {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.exit-popup-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.popup-header {
    background: #D84315;
    /* Brand accent color */
    color: #fff;
    padding: 30px 20px 20px;
}

.popup-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.popup-body {
    padding: 30px;
}

.popup-body p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.popup-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.2rem;
    color: #27AE60;
    font-weight: 800;
}

.popup-btn {
    display: block;
    background: #27AE60;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.popup-btn:hover {
    transform: scale(1.02);
}

.no-thanks {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Basic Offer List */
.basic-bonus-list {
    list-style: none;
    text-align: left;
    margin: 15px auto;
    padding: 0;
    max-width: 350px;
    border-top: 1px dashed #ced4da;
    border-bottom: 1px dashed #ced4da;
    padding: 10px 0;
}

.basic-bonus-list li {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.basic-bonus-list li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Christmas Theme Offer */
.price-box.christmas-box {
    border: 2px solid #C62828;
    /* Festive Red */
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.25);
    overflow: visible;
    /* Let ribbon pop out */
    background: #fff url('data:image/svg+xml;utf8,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1h2v2H1V1zm4 4h2v2H5V5zm4 4h2v2H9V9zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2z" fill="%23c62828" fill-opacity="0.03" fill-rule="evenodd"/%3E');
}

.christmas-ribbon {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%) !important;
    font-size: 1.1rem !important;
    padding: 12px 35px !important;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    border: 1px solid #FFCDD2;
}

.christmas-ribbon i {
    margin-right: 8px;
    color: #FFD700;
    /* Gold Icon */
}

.christmas-title {
    color: #C62828;
    margin-top: 30px;
    /* Space for ribbon */
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.christmas-subtitle {
    color: #888;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhancing the list for Christmas */
.christmas-box .bonus-list li span {
    font-weight: 600;
}

.christmas-box .final-price .big-number {
    color: #C62828 !important;
    /* Holiday Red Price */
}

.christmas-box .cta-button {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%) !important;
    /* Christmas Green Button */
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4) !important;
    border: 1px solid #A5D6A7;
}

/* Christmas Basic Offer (Downsell) */
/* Christmas Basic Offer (Downsell) */
.christmas-basic-box {
    background: #fff url('data:image/svg+xml;utf8,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1h2v2H1V1zm4 4h2v2H5V5zm4 4h2v2H9V9zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2z" fill="%23c62828" fill-opacity="0.03" fill-rule="evenodd"/%3E');
    border: 1px solid #C62828;
    /* Festive Red, thinner */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 16px;
    margin-top: 50px;
    padding-top: 35px;
    /* Space for badge */
}

/* Badge instead of just tree */
.christmas-basic-box::before {
    content: '🎄 KIT ECONÔMICO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #2E7D32;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid #2E7D32;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

.christmas-basic-box h4 {
    color: #C62828;
    /* Festive Red */
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.christmas-basic-box .basic-title {
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.christmas-basic-box .basic-price {
    color: #2E7D32;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 15px 0;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.1);
}

.christmas-basic-box .basic-bonus-list {
    border-top: 1px dashed #FFCDD2;
    border-bottom: 1px dashed #FFCDD2;
}

.christmas-basic-box .basic-bonus-list li i {
    color: #2E7D32;
    /* Green checks */
}

.christmas-basic-box .basic-btn {
    background: transparent;
    border: 2px solid #C62828;
    color: #C62828;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.christmas-basic-box .basic-btn:hover {
    background: #C62828;
    color: #fff;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.2);
    transform: translateY(-2px);
}

.christmas-box .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.5) !important;
}

/* Fix for ribbon overlapping title on Mobile */
@media (max-width: 480px) {
    .christmas-ribbon {
        width: 90%;
        /* Prevent it from being too wide */
        font-size: 0.95rem !important;
        padding: 10px 10px !important;
        white-space: normal;
        /* Allow text wrap nicely inside if needed */
        line-height: 1.2;
    }

    .christmas-title {
        margin-top: 60px;
        /* Push title down so ribbon doesn't cover it */
        font-size: 1.4rem;
    }
}

/* Pricing Grid Redesign */
.pricing-header-mobile {
    display: none;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    /* Mobile friendly */
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Premium Specifics */
.pricing-card.premium {
    border: 3px solid #ffab00;
    /* Gold/Amber border */
    transform: scale(1.02);
    /* Make it pop slightly */
    box-shadow: 0 15px 50px rgba(255, 171, 0, 0.2);
    z-index: 10;
}

.pricing-card.premium:hover {
    transform: scale(1.03) translateY(-5px);
}

/* Header Styles */
.card-header {
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-premium {
    background: #ffab00;
    color: #fff;
}

.header-premium h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.header-basic {
    background: #e9ecef;
    color: #495057;
}

.header-basic h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Badge */
.badge-best-seller {
    position: absolute;
    top: -15px;
    /* Stick out top */
    right: 20px;
    background: #ff3d00;
    /* Red */
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 61, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Body */
.card-body {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Playfair Display', serif;
    /* Matching reference image font style */
    color: #E65100;
    /* Deep Orange */
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Pricing Display */
.pricing-display {
    margin-bottom: 25px;
}

.old-price {
    display: block;
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c2c2c;
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-card.premium .new-price {
    color: #2e7d32;
    /* Green for deal price, similar to image */
}

.pricing-card.basic .new-price {
    color: #495057;
}

.installment-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* CTA Buttons */
.btn-cta {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-premium {
    background: linear-gradient(to bottom, #ffc107, #ff9800);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    border-bottom: 4px solid #e65100;
}

.btn-premium:hover {
    background: linear-gradient(to bottom, #ffd54f, #ffb74d);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
}

.btn-basic {
    background: #e0e0e0;
    color: #424242;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #bdbdbd;
}

.btn-basic:hover {
    background: #eeeeee;
    color: #000;
}

/* Lists */
.benefit-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.benefit-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444;
}

.check-icon,
.fa-check-circle {
    color: #2e7d32;
    /* Green check */
    font-size: 1.1rem;
    margin-top: 2px;
}

.plus-icon,
.fa-plus-circle {
    color: #2e7d32;
    /* Green plus */
    font-size: 1.1rem;
    margin-top: 2px;
}

.highlight-item {
    font-weight: 600;
}

.bonus-item {
    /* Optional indent or style for bonuses */
}

/* Basic List Specifics */
.basic-list li {
    color: #666;
}

.basic-list .excluded {
    color: #aaa;
    text-decoration: line-through;
}

.basic-list .fas.fa-times {
    color: #d32f2f;
    /* Red cross */
    opacity: 0.5;
    font-size: 1rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
    }

    .pricing-header-mobile {
        display: block;
    }

    .pricing-card.premium {
        transform: scale(1);
        /* Remove scale on mobile for better fit */
        order: -1;
        /* Ensure premium is first */
    }
}

/* Discount Modal Refined */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay */
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box.premium-modal {
    background: #fff;
    width: 95%;
    max-width: 550px;
    border-radius: 12px;
    padding: 0;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    overflow: visible;
    /* Allow close button overlap if needed, though we moved it inside */
}

.modal-header-clean {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.close-discount {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.close-discount:hover {
    color: #333;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

/* New Elements */
.wait-tag {
    background: #FF3D00;
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.modal-premium-title {
    font-family: 'Playfair Display', serif;
    color: #E65100;
    /* Deep Orange matching reference */
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.modal-premium-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.modal-offer-visual {
    background: #fdfbf7;
    border: 1px dashed #E65100;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-from {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-to {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.highlight-price {
    color: #E65100;
    font-size: 2.5rem;
    font-weight: 800;
}

.modal-copy-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept-offer {
    background: linear-gradient(to right, #ff6d00, #ff9100);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
    transition: transform 0.2s;
    letter-spacing: 0.5px;
}

.btn-accept-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 109, 0, 0.4);
}

.btn-decline-discount {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-decline-discount:hover {
    color: #666;
}

@media (max-width: 480px) {
    .modal-premium-title {
        font-size: 1.4rem;
    }

    .modal-box.premium-modal {
        width: 90%;
    }
}
/* New Showcase Section */
.showcase-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.showcase-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 0 10px;
    line-height: 1.3;
    color: var(--text-dark);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(1, 1fr); /* Stack on mobile */
    }
}

.showcase-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f9f9f9;
    border: 3px dashed #ccc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.showcase-benefits {
    margin-bottom: 50px;
}

.showcase-benefit-item {
    font-size: 1.15rem;
    font-weight: 700;
    color: #a82e2e; /* Dark reddish color */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
}

.showcase-benefit-item i {
    color: #4CAF50; /* Green checkmark */
    font-size: 1.3rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .showcase-benefit-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}


.showcase-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

