:root {
    --bg-cream: #FFFBF0;
    --bg-peach: #FFF0E6;
    --primary: #FF9F1C;
    --primary-hover: #F9844A;
    --secondary: #4ECDC4;
    --secondary-dark: #2F9C95;
    --accent-sage: #95D5B2;
    --accent-rose: #FFC8DD;
    --text-dark: #4A403A;
    --text-soft: #8D7B6F;
    --card-bg: #ffffff;
    --shadow-soft: 0 10px 30px rgba(131, 107, 85, 0.08);
    --shadow-hover: 0 15px 40px rgba(131, 107, 85, 0.15);
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --radius-l: 24px;
    --radius-m: 16px;
    --radius-s: 12px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 500;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Utilities */
.highlight {
    color: var(--secondary-dark);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    width: 105%;
    height: 12px;
    background: var(--accent-rose);
    z-index: -1;
    border-radius: 10px;
    transform: rotate(-1deg);
    opacity: 0.7;
}

.bonus-highlight {
    color: var(--secondary-dark);
    font-weight: 800;
}

/* Cards (Replacing "Glass" with "Paper") */
.glass {
    background: var(--card-bg);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem 2rem;
    border: 2px solid #F0EAE4;
    transition: all 0.3s ease;
}

.glass:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

/* Buttons */
.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.1rem 1rem;
    background: var(--primary);
    color: white;
    font-weight: 800;
    border-radius: 50px;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(255, 159, 28, 0.3);
    text-transform: none;
    /* Friendly, not uppercase */
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.4);
}

.cta-button.pulse {
    animation: softPulse 2s infinite ease-in-out;
}

.cta-button.secondary {
    background: transparent;
    border: 3px solid var(--secondary);
    color: var(--secondary-dark);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--secondary);
    color: white;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.top-bar p {
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    padding: 4rem 0 8rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 10%, #FFFBF0 0%, #FFF0E6 100%);
}

/* Organic Background Shape */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L60,229.3C120,235,240,245,360,234.7C480,224,600,192,720,181.3C840,171,960,181,1080,197.3C1200,213,1320,235,1380,245.3L1440,256L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    color: var(--text-dark);
    margin: 1.5rem 0;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.hero-text p {
    color: var(--text-soft);
    font-size: 1.25rem;
    line-height: 1.6;
}


.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 2rem auto;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 6px solid white;
    background: #000;
}

.video-container {
    position: relative;
    padding-bottom: 195%;
    /* 9:16 vertical */
    height: 0;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Bloqueia clique no player nativo */
}

.custom-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 30px rgba(255, 159, 28, 0.4);
}

.play-btn svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(1.2);
}

.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--primary);
}

/* Pain Points */
.pain-points {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.pain-points h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-points .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--bg-peach);
    width: 80px;
    height: 80px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic Blob Shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: float 6s ease-in-out infinite;
    box-shadow: none;
}

.summary-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.4rem;
    color: var(--secondary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background-color: #F8FDF9;
    /* Very light mint/sage */
}

.benefits h2 {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 2.2rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Menos espaço entre imagem e texto */
    margin-bottom: 4rem;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.4rem;
    /* Menores */
    color: var(--secondary-dark);
    margin-bottom: 0;
    /* Mais perto da imagem */
}

.benefit-img {
    flex: 1;
    height: 320px;
    border-radius: var(--radius-l);
    position: relative;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: white;
    border: 6px solid white;
}

/* Abstract Backgrounds made organic */
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1;
}

.glass-box:hover .cover-img {
    opacity: 1;
}

/* Abstract Backgrounds made organic (REMOVED) */
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1;
}

.glass-box:hover .cover-img {
    opacity: 1;
}

/* Preview Section Update */
.preview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-carousel {
    max-width: 600px;
    /* Melhor tamanho para visualização vertical no carrossel */
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-hover);
    border: 8px solid white;
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

/* Bonuses */
.bonuses {
    padding: 6rem 0;
    background: var(--bg-cream);
    position: relative;
}

.bonuses h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.bonus-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
    z-index: 2;
    position: absolute;
    top: 15px;
    right: 15px;
}

.bonus-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f4f4f4;
    border-radius: var(--radius-m);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.price span.strike {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 10px;
}

.price span.free {
    color: var(--secondary-dark);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Pricing */
.pricing-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.plan-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #eee;
    position: relative;
    border-radius: var(--radius-l);
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.plan-card.popular {
    border: 3px solid var(--primary);
    box-shadow: 0 25px 50px rgba(255, 159, 28, 0.15);
    background: #FFFEFA;
    transform: scale(1.05);
    z-index: 2;
}

.plan-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.pop-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    width: max-content;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-desc {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 2rem;
    min-height: 3em;
    text-align: center;
}

.price-tag {
    font-size: 3.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 1.5rem 0;
    line-height: 1;
    text-align: center;
}

.price-tag .small {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-soft);
    font-size: 1.1rem;
    opacity: 0.7;
    text-align: center;
}

.features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.features li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234ECDC4' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat left 2px;
    background-size: 20px;
    padding-left: 32px;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.secure-text {
    text-align: center;
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 90%;
    line-height: 1.4;
}

/* Testimonials */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.test-card {
    background: white;
    border: none;
    font-size: 0.95rem;
}

.test-card p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.user span {
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background: #fdfdfd;
}

.faq h2 {
    white-space: nowrap;
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.accordion {
    max-width: 850px;
    margin: 0 auto;
}

.accordion .item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1.2rem;
    border-radius: var(--radius-m);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.8rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--secondary-dark);
}

.accordion-header span {
    font-size: 1.5rem;
    color: var(--secondary);
    background: #F0F9F8;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.accordion-body {
    padding: 0 2rem 2rem;
    color: var(--text-soft);
    font-size: 1.1rem;
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-body.active {
    display: block;
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 1.8rem;
        white-space: normal;
        /* No mobile pode quebrar se for muito pequeno */
    }

    .accordion-header {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h3 {
    color: white;
    font-size: 2.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.3;
}

footer .cta-button.big {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.4);
    margin-bottom: 5rem;
}

.legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    max-width: 600px;
    margin: 1.5rem auto !important;
    line-height: 1.6;
    opacity: 0.7;
}

footer .links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

footer .links a {
    color: #777;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    font-weight: 500;
}

footer .links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    footer h3 {
        font-size: 1.6rem;
    }

    footer .cta-button.big {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        white-space: normal;
    }
}

/* Guarantee */
.guarantee {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.glass-panel {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-l);
    display: flex;
    flex-direction: column;
    /* Centralizado verticalmente */
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid #EBF1F1;
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
}

.guarantee-img {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.glass-panel h3 {
    font-size: 2.2rem;
    color: var(--secondary-dark);
    margin: 0;
}

.glass-panel p {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes softPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .benefit-row {
        flex-direction: column !important;
        text-align: center;
    }

    .plan-card.popular {
        transform: scale(1);
        margin: 2rem 0;
    }

    .glass-panel {
        flex-direction: column;
        text-align: center;
    }
}

/* Modal Upsell */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
    padding: 1rem;
    overflow-y: auto;
    /* Permite rolar se o modal for maior que a tela */
}

.modal-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: var(--radius-l);
    padding: 2.5rem 1.5rem;
    position: relative;
    text-align: center;
    animation: modalIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary);
    max-height: 95vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-soft);
    line-height: 1;
}

.upsell-badge {
    background: #ff4757;
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    animation: softPulse 2s infinite;
}

.upsell-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--radius-m);
    margin: 2rem 0;
    border: 2px dashed var(--primary);
}

.new-price-tag {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 1rem;
}

.no-thanks {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #f8f8f8;
    transition: 0.3s;
}

.no-thanks:hover {
    background: #f0f0f0;
    color: var(--text-dark);
    border-color: #ccc;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem 1rem;
        /* Padding reduzido */
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        /* Título menor */
        margin-bottom: 0.5rem;
    }

    .modal-content p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .upsell-badge {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .upsell-card {
        padding: 0.8rem;
        /* Card mais compacto */
        margin: 1rem 0;
    }

    .new-price-tag {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .modal-content .features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin: 1rem 0;
        text-align: left;
    }

    .modal-content .features li {
        font-size: 0.75rem;
        margin-bottom: 0;
        padding-left: 22px;
        background-size: 15px;
    }

    .modal-content .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-top: 0.5rem;
    }

    .no-thanks {
        margin-top: 0.8rem;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}