/* PPRN Sales Page - Premium Obsidian & Gold Design System */
:root {
    --bg-obsidian: #080c14;
    --bg-midnight: #0f172a;
    --bg-slate: #1e293b;
    --bg-card-dark: rgba(30, 41, 59, 0.7);
    
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-dark: #d97706;
    --gold-glow: rgba(251, 191, 36, 0.4);
    
    --emerald: #10b981;
    --emerald-hover: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.3);
    
    --slate-text: #475569;
    --slate-light: #94a3b8;
    --navy-text: #0f172a;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-obsidian);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & General */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.25;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }

.text-white { color: #ffffff !important; }
.text-navy { color: var(--navy-text) !important; }
.text-yellow { color: var(--gold-primary) !important; }
.text-slate { color: var(--slate-light) !important; }

.highlight-yellow {
    background: linear-gradient(135deg, #fde047 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-sm {
    max-width: 850px;
}

/* Sections */
section {
    padding: 5.5rem 0;
    position: relative;
}

.dark-section {
    background: radial-gradient(ellipse at top center, #1e293b 0%, var(--bg-obsidian) 85%);
    color: #ffffff;
}

.dark-navy-section {
    background: linear-gradient(180deg, var(--bg-obsidian) 0%, #0f172a 100%);
    color: #ffffff;
}

.dark-gradient-section {
    background: radial-gradient(circle at top center, #1e293b 0%, #080c14 100%);
    color: #ffffff;
}

.light-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--slate-text);
}

/* Buttons */
.btn-yellow {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #080c14;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.15rem 2.8rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--gold-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.btn-yellow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.3rem 3.2rem;
}

.btn-medium {
    font-size: 1.05rem;
    padding: 1rem 2.4rem;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline-yellow {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-yellow:hover {
    background: var(--gold-primary);
    color: #080c14;
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Pulse Animation */
@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}
.pulse-btn {
    animation: pulseGlow 2.5s infinite;
}

/* Section Title */
.section-title {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto 2.2rem;
}
.highlight-navy {
    color: var(--navy-text);
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}
.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-box-title {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 1rem 2.2rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-box-title h2 {
    color: var(--gold-primary);
    font-size: 1.9rem;
    letter-spacing: 1px;
}
.hero-subheadline {
    font-size: 1.2rem;
    color: var(--slate-light);
    max-width: 820px;
    margin: 0 auto 2.8rem;
}
.hero-image-container {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--slate-light);
}

/* Check Grid (Amostras) */
.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin: 2.2rem auto;
}
.check-item {
    background: #ffffff;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    font-weight: 700;
    color: var(--navy-text);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease;
}
.check-item:hover {
    transform: translateY(-3px);
}
.check-icon {
    color: var(--emerald);
    font-weight: 900;
    font-size: 1.3rem;
    margin-right: 10px;
}

/* Gallery Slider */
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
}
.gallery {
    display: flex;
    width: max-content;
    gap: 1.8rem;
    animation: scrollGallery 28s linear infinite;
}
.gallery:hover {
    animation-play-state: paused;
}
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.9rem)); }
}
.amostra-card {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease;
}
.amostra-card:hover {
    transform: translateY(-6px);
}
.amostra-card img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

/* Depoimentos Slider */
.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}
.testimonials-slider {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: scrollGallery 35s linear infinite;
}
.testimonials-slider:hover {
    animation-play-state: paused;
}
.depoimento-card {
    flex: 0 0 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: #0f172a;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.depoimento-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
}
.depoimento-card img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    display: block;
    background: #080c14;
}

/* Card Benefícios (Seção 4) */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}
.card-beneficio {
    background: #ffffff;
    padding: 2.4rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card-beneficio::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--emerald));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-beneficio:hover::before {
    opacity: 1;
}
.card-beneficio:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}
.icon-circle {
    width: 65px; height: 65px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.bg-rocket { background: #fef2f2; }
.bg-book { background: #eff6ff; }
.bg-target { background: #fefce8; }
.bg-brain { background: #f0fdf4; }

.card-beneficio h3 {
    color: var(--navy-text);
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}
.card-beneficio p {
    font-size: 0.98rem;
    color: var(--slate-text);
}

.bottom-callout {
    font-weight: 800;
    color: var(--navy-text);
    font-size: 1.2rem;
}

/* Para Quem É (Seção 6) */
.para-quem-list {
    max-width: 720px;
    margin: 2.2rem auto;
}
.para-quem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.15);
    padding: 1.15rem 1.6rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.para-quem-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateX(6px);
    background: rgba(30, 41, 59, 0.85);
}
.check-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* O Que Você Recebe */
.recebe-wrapper {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}
.recebe-text { flex: 1; min-width: 320px; }
.recebe-media { flex: 1; min-width: 300px; }
.mockup-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.badge-green {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.recebe-sub {
    font-size: 1.1rem;
    color: var(--slate-text);
    margin-bottom: 1.8rem;
}
.recebe-ul {
    list-style: none;
}
.recebe-ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    color: var(--navy-text);
    font-weight: 600;
}
.icon-chk {
    color: var(--emerald);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Bonus Grid (Matching screenshot: white cards, dashed border, gold badge on top) */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
    margin-top: 3.5rem;
}
.card-bonus {
    background: #ffffff;
    border: 2px dashed #f59e0b;
    border-radius: 16px;
    padding: 2.6rem 1.8rem 2.2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-bonus:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}
.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #080c14;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.32rem 1.5rem;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    white-space: nowrap;
}
.bonus-card-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0.5rem 0;
}
.bonus-icon {
    font-size: 1.8rem;
    margin: 0.4rem 0 0.4rem;
}
.card-bonus p {
    font-size: 0.95rem;
    color: var(--navy-text);
    font-weight: 600;
    line-height: 1.4;
}
.bonus-img {
    width: 100%;
    max-height: 190px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing Section */
.urgency-alert {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    display: inline-block;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.2);
}
.oferta-sub {
    font-size: 1.15rem;
    color: var(--slate-light);
    max-width: 680px;
    margin: 0 auto 2.8rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    max-width: 880px;
    margin: 0 auto;
    align-items: stretch;
}
.price-card {
    background: #1e293b;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}
.price-card:hover {
    transform: translateY(-6px);
}
.price-header {
    padding: 2.2rem 1.8rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.price-header h3 {
    font-size: 1.45rem;
    color: #fff;
}
.premium-card {
    border: 2px solid var(--gold-primary);
    box-shadow: 0 20px 55px rgba(251, 191, 36, 0.25);
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    transform: scale(1.03);
}
.premium-card:hover {
    transform: scale(1.03) translateY(-6px);
}
.badge-best {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #080c14;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 0.45rem 1.6rem;
    display: inline-block;
    letter-spacing: 1.5px;
}
.premium-header h3 {
    color: var(--gold-primary);
    font-size: 1.7rem;
}
.premium-header p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--slate-light);
}

.price-body {
    padding: 2.2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.price-ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.8rem;
}
.price-ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
    color: #e2e8f0;
}
.price-ul li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}
.chk-green { color: var(--emerald); font-weight: 900; }
.chk-red { color: #ef4444; font-weight: 900; }

.price-strike del {
    color: #ef4444;
    font-size: 1.15rem;
}
.price-main {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.6rem 0;
}
.price-main span {
    font-size: 2.7rem;
    color: #ffffff;
}
.yellow-price span {
    color: var(--gold-primary);
}
.price-type {
    font-size: 0.88rem;
    color: var(--slate-light);
    margin-bottom: 1.2rem;
}
.security-tag {
    display: block;
    font-size: 0.82rem;
    color: var(--slate-light);
    margin-top: 0.9rem;
}

/* Reforço */
.pillars-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 1.8rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.reforco-lead {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}
.reforco-ul {
    list-style: none;
    margin-top: 1.2rem;
}
.reforco-ul li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    color: var(--navy-text);
}
.highlight-banner {
    background: var(--bg-obsidian);
    color: var(--gold-primary);
    padding: 1.3rem 2rem;
    border-radius: 16px;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Garantia */
.garantia-badge {
    font-size: 3.8rem;
    margin-bottom: 1rem;
}
.garantia-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

/* FAQ Accordion */
.accordion {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-color: var(--gold-primary);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.4rem 1.8rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--navy-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--navy-text);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.8rem;
}
.faq-answer p {
    color: var(--slate-text);
    font-size: 1rem;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-dark);
}

/* Summary Final */
.summary-final-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 2.2rem;
    border-radius: 20px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}
.summary-final-box h3 {
    color: var(--gold-primary);
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}
.final-prices {
    font-size: 1.15rem;
    margin-top: 1.2rem;
}

/* Pop-up / Modal (Section 14) */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 12, 20, 0.88);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: #0f172a;
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
    color: #ffffff;
}
.close-modal {
    position: absolute;
    top: 14px; right: 20px;
    background: transparent;
    border: none;
    color: var(--slate-light);
    font-size: 2.2rem;
    cursor: pointer;
}
.modal-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.modal-content h2 {
    font-size: 2.3rem;
    color: var(--gold-primary);
}
.modal-lead {
    font-size: 1rem;
    color: var(--slate-light);
    margin-bottom: 1.6rem;
}
.modal-offer-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--gold-primary);
    padding: 1.6rem;
    border-radius: 16px;
    margin-bottom: 1.6rem;
}
.modal-offer-box h3 {
    font-size: 1.15rem;
    color: #ffffff;
}
.modal-ul {
    list-style: none;
}
.modal-ul li {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
}
.modal-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}
.highlight-modal-price {
    color: var(--gold-primary);
    font-size: 1.9rem;
}
.decline-link {
    background: transparent;
    border: none;
    color: var(--slate-light);
    font-size: 0.88rem;
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness System (Smartphones & Tablets)
   ========================================================================== */

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }
    
    .container {
        padding: 0 1.2rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.2rem;
    }
    
    .hero-box-title {
        padding: 0.8rem 1.2rem;
        width: 100%;
        margin-bottom: 1.2rem;
    }
    
    .hero-box-title h2 {
        font-size: 1.35rem;
        word-break: break-word;
    }
    
    .hero-subheadline {
        font-size: 1.02rem;
        margin-bottom: 2rem;
    }
    
    .hero-image-container {
        margin-bottom: 1.8rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.88rem;
    }
    
    /* Buttons Mobile */
    .btn-yellow, .btn-large, .btn-medium {
        width: 100%;
        display: block;
        padding: 1.15rem 1.2rem;
        font-size: 1.05rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Section Titles & Subtitles */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    /* Check Grid (Amostras) */
    .check-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .check-item {
        padding: 0.85rem 1.1rem;
        font-size: 0.95rem;
    }
    
    /* Sliders / Carousels */
    .amostra-card {
        flex: 0 0 250px;
    }
    
    .amostra-card img {
        height: 350px;
    }
    
    .depoimento-card {
        flex: 0 0 230px;
    }
    
    .depoimento-card img {
        height: 400px;
    }
    
    /* Benefícios Grid */
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .card-beneficio {
        padding: 1.8rem 1.2rem;
    }
    
    /* Para Quem É */
    .para-quem-list {
        margin: 1.5rem auto;
    }
    
    .para-quem-item {
        padding: 0.95rem 1.1rem;
        font-size: 0.95rem;
        gap: 12px;
    }
    
    /* O Que Você Recebe */
    .recebe-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .recebe-text, .recebe-media {
        width: 100%;
        min-width: unset;
    }
    
    .recebe-ul li {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    /* Bonus Section */
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        margin-top: 2.8rem;
    }
    
    .card-bonus {
        padding: 2.2rem 1.2rem 1.8rem;
    }
    
    .bonus-tag {
        font-size: 0.78rem;
        padding: 0.28rem 1.2rem;
    }
    
    .bonus-card-img {
        max-height: 180px;
    }
    
    /* Pricing Section Mobile */
    .urgency-alert {
        font-size: 0.98rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .oferta-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-card {
        width: 100%;
        transform: none !important;
    }
    
    .premium-card {
        transform: none !important;
    }
    
    .price-header {
        padding: 1.8rem 1.2rem 1rem;
    }
    
    .price-body {
        padding: 1.6rem 1.2rem;
    }
    
    .price-main span {
        font-size: 2.3rem;
    }
    
    /* FAQ Accordion */
    .faq-question {
        padding: 1.1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.92rem;
    }
    
    /* Upsell Modal Mobile */
    .modal-content {
        padding: 2.2rem 1.2rem 1.8rem;
        max-width: 95%;
        max-height: 92vh;
        overflow-y: auto;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-offer-box {
        padding: 1.2rem 1rem;
    }
    
    .highlight-modal-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-box-title h2 {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 1.55rem;
    }
    
    .btn-yellow, .btn-large, .btn-medium {
        font-size: 0.98rem;
        padding: 1.05rem 1rem;
    }
    
    .amostra-card {
        flex: 0 0 220px;
    }
    
    .amostra-card img {
        height: 310px;
    }
    
    .depoimento-card {
        flex: 0 0 210px;
    }
    
    .depoimento-card img {
        height: 370px;
    }
}
