/* ==========================================================================
   DESIGN SYSTEM & THEME COLORS (EXTRACTED FROM THE PRODUCT MOCKUP IMAGE)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-page: #FCF5EF;       /* Creamy warm peach-beige background */
    --color-bg-card: #FFFFFF;       /* Pure white for container cards */
    --color-bg-alt: #F4E7DE;        /* Soft cocoa beige for section contrast */
    --color-text-dark: #3D1B13;     /* Rich dark chocolate brown for headings/text */
    --color-text-muted: #725852;    /* Soft cocoa brown for descriptions */
    --color-pink: #DE526E;          /* Delicious strawberry pink from the cover */
    --color-pink-light: #FFF1F3;    /* Light pastel pink for alerts and highlights */
    --color-gold: #FFB300;          /* Warm golden accent for stars and highlights */
    --color-green: #27AE60;         /* High-converting green for checkout buttons */
    --color-green-hover: #219653;
    
    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #FCF5EF 0%, #FFF1F3 100%);
    --gradient-pink: linear-gradient(135deg, #FF6B8B 0%, #DE526E 100%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FF8F00 100%);
    --gradient-green: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --gradient-chocolate: linear-gradient(135deg, #3D1B13 0%, #200E0A 100%);
    
    /* Typography */
    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout Details */
    --shadow-soft: 0 8px 30px rgba(61, 27, 19, 0.05);
    --shadow-medium: 0 15px 40px rgba(61, 27, 19, 0.08);
    --shadow-strong: 0 25px 60px rgba(61, 27, 19, 0.15);
    --shadow-pink-glow: 0 10px 25px rgba(222, 82, 110, 0.35);
    --shadow-green-glow: 0 10px 25px rgba(39, 174, 96, 0.35);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   1. TOPO DA PÁGINA — CRONÔMETRO DE URGÊNCIA
   ========================================================================== */
.top-urgency-bar {
    background: var(--gradient-chocolate);
    color: #FFFFFF;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(61, 27, 19, 0.15);
    border-bottom: 2px solid rgba(255, 90, 121, 0.2);
}

.urgency-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.urgency-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.emoji {
    display: inline-block;
    animation: firePulse 1.5s infinite;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(222, 82, 110, 0.15);
    padding: 4px 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(222, 82, 110, 0.4);
    font-family: var(--font-heading);
    font-weight: 800;
}

.timer-segment {
    display: flex;
    align-items: baseline;
}

.timer-segment span:first-child {
    font-size: 1.2rem;
    color: var(--color-pink);
    min-width: 22px;
    text-align: center;
    letter-spacing: -0.5px;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
    font-weight: 600;
}

.timer-divider {
    font-size: 1.1rem;
    animation: flash 1s infinite;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero-section {
    background: var(--gradient-hero);
    padding: 80px 0 100px 0;
    text-align: center;
}

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

/* 2. HEADLINE PRINCIPAL (CHAMADA) */
.headline-wrapper {
    width: 100%;
    max-width: 900px;
    margin-bottom: 24px;
}

.headline-placeholder {
    background-color: rgba(222, 82, 110, 0.03);
    border: 3px dashed var(--color-pink);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.headline-placeholder:hover {
    background-color: rgba(222, 82, 110, 0.06);
    transform: translateY(-2px);
}

.placeholder-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: #FFFFFF;
    padding: 4px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(222, 82, 110, 0.2);
}

.headline-text {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--color-text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.highlight-pink {
    color: var(--color-pink);
    display: inline-block;
    position: relative;
}

.subheadline-text {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: var(--color-text-muted);
    font-weight: 600;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* 3. SUBTÍTULO / TEXTO DE DOR */
.subtitle-wrapper {
    width: 100%;
    max-width: 820px;
    margin-bottom: 40px;
}

.pain-text {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 500;
}

/* 4. IMAGEM ILUSTRATIVA DO PRODUTO (Mockup premium style) */
.product-image-wrapper {
    width: 100%;
    max-width: 580px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.mockup-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.main-product-mockup {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    transform: rotate(-1deg);
}

.mockup-container:hover .main-product-mockup {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    box-shadow: 0 35px 70px rgba(61, 27, 19, 0.25);
}

/* Fallback box styling if image not loaded */
.mockup-fallback-box {
    background: #FFFFFF;
    border: 2px dashed rgba(61, 27, 19, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mockup-fallback-icon {
    font-size: 4rem;
    color: var(--color-pink);
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.mockup-fallback-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.mockup-fallback-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 380px;
}

/* 5. BOTÃO DE CHAMADA PARA AÇÃO (CTA) */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-pink);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-pink-glow);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(222, 82, 110, 0.5);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-cta-main:hover .btn-icon {
    transform: translateY(3px);
}

.cta-security-label {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.secure-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.secure-item i {
    color: var(--color-pink);
}

/* ==========================================================================
   PILARES DO PRODUTO (WHAT YOU WILL LEARN)
   ========================================================================== */
.pillars-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid rgba(61, 27, 19, 0.05);
    border-bottom: 1px solid rgba(61, 27, 19, 0.05);
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    background-color: var(--color-pink-light);
    color: var(--color-pink);
    font-family: var(--font-heading);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-text-dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background-color: var(--color-bg-page);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(61, 27, 19, 0.04);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(222, 82, 110, 0.2);
}

.pillar-icon {
    background-color: #FFFFFF;
    color: var(--color-pink);
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   6. SEÇÃO DE OFERTA (PLANOS)
   ========================================================================== */
.offers-section {
    background-color: var(--color-bg-alt);
    padding: 100px 0;
}

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

.urgency-tag {
    background-color: var(--color-pink);
    color: #FFFFFF;
}

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

.plan-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(61, 27, 19, 0.04);
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* PLANO COMPLETO (VIP - DESTACADO) */
.plan-featured {
    background: var(--gradient-chocolate);
    color: #FFFFFF;
    border: 3px solid var(--color-gold);
    box-shadow: 0 25px 60px rgba(61, 27, 19, 0.25);
}

.hot-badge {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(61, 27, 19, 0.08);
    padding-bottom: 30px;
}

.plan-featured .plan-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--color-pink);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    background-color: var(--color-pink-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.gold-badge {
    color: var(--color-gold);
    background-color: rgba(255, 179, 0, 0.15);
}

.plan-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    min-height: 50px;
}

.text-muted-white {
    color: #BBAAA6;
}

.price-display {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.text-muted-light {
    color: #8E706A;
}

.new-price {
    display: flex;
    align-items: flex-start;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
}

.plan-featured .new-price {
    color: #FFFFFF;
}

.currency {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 8px;
    margin-right: 4px;
}

.text-gold {
    color: var(--color-gold);
}

.value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.decimal {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 8px;
}

/* Plan Body */
.plan-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.list-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-features i {
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.check-basic {
    color: var(--color-pink);
}

.check-gold {
    color: var(--color-gold);
}

.gift-gold {
    color: var(--color-pink);
}

.plan-features span {
    font-size: 0.95rem;
    line-height: 1.45;
}

/* Plan Footer & Checkout button */
.plan-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-buy {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-buy-basic {
    background: var(--gradient-pink);
    color: #FFFFFF;
    box-shadow: var(--shadow-pink-glow);
}

.btn-buy-basic:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(222, 82, 110, 0.45);
}

/* High-Converting checkout button color (Green) for the main purchase offer */
.btn-buy-featured {
    background: var(--gradient-green);
    color: #FFFFFF;
    box-shadow: var(--shadow-green-glow);
}

.btn-buy-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.5);
}

.secure-payment-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   7. PROVA SOCIAL (TESTIMONIALS)
   ========================================================================== */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--color-bg-page);
    border: 1px solid rgba(61, 27, 19, 0.05);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stars-rating {
    color: var(--color-gold);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.feedback-text {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-pink-light);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--color-pink);
}

.user-details h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.user-details span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.edit-note-box {
    text-align: center;
    margin-top: 30px;
}

.edit-note-box p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background-color: var(--color-bg-alt);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    border: 1px dashed rgba(61, 27, 19, 0.15);
}

/* ==========================================================================
   8. PERGUNTAS FREQUENTES (FAQ)
   ========================================================================== */
.faq-section {
    background-color: var(--color-bg-page);
    padding: 100px 0;
    border-top: 1px solid rgba(61, 27, 19, 0.05);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid rgba(61, 27, 19, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-pink);
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--color-text-muted);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(254, 245, 239, 0.4);
}

.faq-content p {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* Active FAQ Item */
.faq-item.active {
    border-color: rgba(222, 82, 110, 0.2);
    box-shadow: var(--shadow-soft);
}

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

/* ==========================================================================
   9. RODAPÉ SIMPLES COM GARANTIA E SUPORTE
   ========================================================================== */
.footer-section {
    background-color: var(--color-text-dark);
    color: #FFFFFF;
    padding: 80px 0 40px 0;
}

.guarantee-container {
    margin-bottom: 50px;
}

.guarantee-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.guarantee-icon {
    font-size: 3.5rem;
    color: var(--color-pink);
    text-shadow: 0 0 15px rgba(222, 82, 110, 0.4);
    animation: float 4s ease-in-out infinite;
}

.guarantee-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: #BBAAA6;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer-info-col p {
    font-size: 0.95rem;
    color: #BBAAA6;
    max-width: 420px;
}

.footer-support-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.footer-support-col p {
    font-size: 0.95rem;
    color: #BBAAA6;
    margin-bottom: 8px;
}

.footer-support-col i {
    color: var(--color-pink);
    margin-right: 6px;
}

.support-tip {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #8C7875;
}

.footer-copyright p:first-child {
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes firePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Pulsating animation for main button */
.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(222, 82, 110, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(222, 82, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(222, 82, 110, 0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 992px) {
    .headline-text {
        font-size: 2.8rem;
    }
    
    .plans-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .headline-text {
        font-size: 2.3rem;
    }
    
    .subheadline-text {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .hero-section {
        padding: 50px 0 70px 0;
    }
    
    .pain-text {
        font-size: 1.05rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 2rem;
    }
    
    /* Layout */
    .urgency-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 480px;
    }
    
    .plan-card {
        padding: 36px 30px;
    }
    
    .hot-badge {
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-cta-main {
        font-size: 1.15rem;
        padding: 16px 28px;
        width: 100%;
    }
    
    .mockup-container {
        padding: 0;
    }
    
    .mockup-fallback-box {
        padding: 30px 20px;
    }
}
