/* ============================================
   FUNNELS.CSS — Estilo Bloom & Bits
   ============================================ */

/* ========== HERO BLOOM ========== */
.funnels-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 1.5rem 40px;
}

.hero-bloom-card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 900px) {
    .hero-bloom-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
}

.retro-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126,215,166,0.15);
    color: var(--verde-oscuro);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(126,215,166,0.3);
}
[data-theme="dark"] .retro-tag { color: var(--verde-pastel); }

.tag-dot {
    width: 8px; height: 8px;
    background: var(--verde-pastel);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--verde-pastel);
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.retro-title {
    font-family: 'Press Start 2P', 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.retro-title-small {
    font-family: 'Press Start 2P', 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.gradient-word {
    background: linear-gradient(135deg, var(--verde-pastel), var(--verde-oscuro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.italic-em {
    font-style: italic;
    font-family: 'Poppins', serif;
    background: linear-gradient(135deg, var(--verde-pastel), var(--verde-oscuro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bloom-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Botones */
.btn-retro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-primary-retro {
    background: linear-gradient(135deg, var(--verde-pastel), #4FAF7F);
    color: var(--azul-marino);
}
.btn-primary-retro:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(126,215,166,0.45);
}
.btn-secondary-retro {
    background: var(--bg-body);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary-retro:hover {
    border-color: var(--verde-pastel);
    color: var(--verde-oscuro);
}
.btn-full { width: 100%; justify-content: center; margin-top: 1rem; }

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.chip i { color: var(--verde-pastel); }

/* ========== ESCENA BLOOM CON EMBUDO ========== */
.bloom-right {
    position: relative;
    min-height: 380px;
}

.bloom-scene {
    position: relative;
    width: 100%;
    height: 380px;
    background: linear-gradient(180deg, #E8F4FF 0%, #E8FFF0 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(126,215,166,0.1);
}
[data-theme="dark"] .bloom-scene {
    background: linear-gradient(180deg, #0F1B35 0%, #0F2A1A 100%);
}

/* Nubes */
.sky-cloud {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    animation: floatCloud 6s ease-in-out infinite;
}
.sky-cloud::before, .sky-cloud::after {
    content: ''; position: absolute; background: #fff; border-radius: 50%;
}
.cloud-1 { width: 80px; height: 28px; top: 12%; left: 10%; }
.cloud-1::before { width: 28px; height: 28px; top: -12px; left: 15px; }
.cloud-1::after { width: 22px; height: 22px; top: -10px; right: 18px; }

.cloud-2 { width: 65px; height: 22px; top: 20%; right: 12%; animation-delay: 2s; }
.cloud-2::before { width: 22px; height: 22px; top: -10px; left: 12px; }
.cloud-2::after { width: 18px; height: 18px; top: -8px; right: 14px; }

@keyframes floatCloud {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Colinas */
.hill {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    box-shadow: inset -15px -10px 25px rgba(0,0,0,0.1);
}
.hill-back {
    width: 65%;
    height: 50%;
    left: -10%;
    background: linear-gradient(180deg, #A8E6C4 0%, #7ED7A6 100%);
    z-index: 1;
}
.hill-front {
    width: 70%;
    height: 40%;
    right: -15%;
    background: linear-gradient(180deg, #7ED7A6 0%, #4FAF7F 100%);
    z-index: 2;
}

/* ========== ESCENA DEL EMBUDO CENTRAL ========== */
.funnel-scene {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 160px;
    height: 200px;
    z-index: 3;
}

/* Cuerpo del embudo plastilina */
.funnel-body {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 100px;
    background: linear-gradient(180deg, var(--verde-pastel) 0%, var(--verde-oscuro) 100%);
    clip-path: polygon(0 0, 100% 0, 72% 65%, 72% 100%, 28% 100%, 28% 65%);
    filter: drop-shadow(0 15px 25px rgba(15,61,62,0.35));
    animation: funnelPulse 3s ease-in-out infinite;
}
@keyframes funnelPulse {
    0%,100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.04); }
}

/* Leads cayendo */
.lead-drop {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    animation: dropDown 2.2s infinite;
}
.lead-1 {
    background: radial-gradient(circle at 30% 30%, #FFD966, #FF8C42);
    animation-delay: 0s;
}
.lead-2 {
    background: radial-gradient(circle at 30% 30%, #FFB6DB, #FF6B9D);
    animation-delay: 0.5s;
    left: 38%;
}
.lead-3 {
    background: radial-gradient(circle at 30% 30%, #A8D8FF, #4DABF7);
    animation-delay: 1s;
    left: 62%;
}
.lead-4 {
    background: radial-gradient(circle at 30% 30%, #C4B5FD, #A78BFA);
    animation-delay: 1.5s;
}
@keyframes dropDown {
    0% { transform: translate(-50%, -20px) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(-50%, 130px) scale(0.4); opacity: 0; }
}

/* Dinero saliendo */
.money-out {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 8px 14px rgba(255,215,0,0.5));
    animation: moneyPop 2s ease-in-out infinite;
}
@keyframes moneyPop {
    0%,100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(8px) scale(1.15); }
}

/* Sparkles */
.sparkle {
    position: absolute;
    font-size: 1.3rem;
    z-index: 4;
    animation: sparkleFloat 2.5s infinite;
}
.sp1 { top: 10%; right: 28%; animation-delay: 0s; }
.sp2 { top: 32%; right: 8%; animation-delay: 0.8s; font-size: 1rem; }
.sp3 { top: 45%; left: 10%; animation-delay: 1.5s; font-size: 0.9rem; }
@keyframes sparkleFloat {
    0%,100% { opacity: 0.4; transform: scale(0.7) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* ========== PICK YOUR FUNNEL ========== */
.funnel-types {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-head-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-head-center p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.type-card {
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: .4s;
    display: flex;
    flex-direction: column;
}
.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.card-blue  { background: linear-gradient(180deg, #E8F4FF 0%, #D0E8FF 100%); }
.card-peach { background: linear-gradient(180deg, #FFF1E0 0%, #FFE0C4 100%); }
.card-mint  { background: linear-gradient(180deg, #E8FFF0 0%, #C4FFD9 100%); }

[data-theme="dark"] .card-blue  { background: linear-gradient(180deg, #0F1B35 0%, #152442 100%); }
[data-theme="dark"] .card-peach { background: linear-gradient(180deg, #2A1F15 0%, #1F160D 100%); }
[data-theme="dark"] .card-mint  { background: linear-gradient(180deg, #0F2A1A 0%, #081F12 100%); }

.type-tag {
    display: inline-block;
    background: rgba(255,255,255,0.7);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--azul-marino);
    margin-bottom: 1rem;
    width: fit-content;
}
[data-theme="dark"] .type-tag { background: rgba(0,0,0,0.3); color: var(--verde-pastel); }

/* Mockup retro */
.mockup-retro {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    background: #fff;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
}
[data-theme="dark"] .mockup-retro { background: var(--bg-card); }

.bars-bg {
    position: absolute;
    inset: 0;
    background-size: 10px 100%;
    opacity: 0.5;
}
.bars-blue  { background-image: repeating-linear-gradient(90deg, #A8D8FF 0px, #A8D8FF 4px, transparent 4px, transparent 10px); }
.bars-peach { background-image: repeating-linear-gradient(90deg, #FFB88C 0px, #FFB88C 4px, transparent 4px, transparent 10px); }
.bars-mint  { background-image: repeating-linear-gradient(90deg, #7ED7A6 0px, #7ED7A6 4px, transparent 4px, transparent 10px); }

.placeholder-sm {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-muted);
    padding: 1rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    margin: 1.5rem;
    height: calc(100% - 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .placeholder-sm { background: rgba(0,0,0,0.4); }
.placeholder-sm i {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: var(--verde-pastel);
}
.placeholder-sm small {
    font-size: 0.75rem;
    font-weight: 600;
}

.type-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.type-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.type-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}
.type-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.type-list i {
    color: var(--verde-pastel);
    font-size: 0.85rem;
}

/* ========== EXISTING SECTION ========== */
.existing-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: 1fr; }
}
.showcase-text .mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(126,215,166,0.15);
    color: var(--verde-oscuro);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(126,215,166,0.3);
}
[data-theme="dark"] .showcase-text .mini-tag { color: var(--verde-pastel); }
.dot-live {
    width: 7px; height: 7px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px #22C55E;
    animation: livePulse 1.5s infinite;
}
.showcase-text p {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.showcase-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
}
.showcase-list i {
    color: var(--verde-pastel);
    font-size: 1.1rem;
}
.mockup-big {
    height: 380px;
    background: #fff;
    border-radius: 24px;
}
[data-theme="dark"] .mockup-big { background: var(--bg-card); }
.placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 1rem;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    margin: 2rem;
    height: calc(100% - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .placeholder { background: rgba(0,0,0,0.4); }
.placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.6rem;
    color: var(--verde-pastel);
}
.placeholder p {
    font-weight: 700;
    margin: 0 0 0.3rem !important;
    color: var(--text-primary);
}
.placeholder small {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ========== PROCESO ========== */
.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: .3s;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--verde-pastel);
}
.highlight-step {
    background: linear-gradient(145deg, var(--verde-pastel), #A8E6C4);
    border-color: transparent;
    color: var(--azul-marino);
}
.highlight-step .step-pixel,
.highlight-step h4,
.highlight-step p,
.highlight-step .step-time { color: var(--azul-marino); }

.step-pixel {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1.5rem;
    color: var(--verde-oscuro);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.1));
}
.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}
.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--verde-oscuro);
    background: rgba(126,215,166,0.15);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
}
[data-theme="dark"] .step-time { color: var(--verde-pastel); }

/* ========== INCLUDED ========== */
.included-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}
.include-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem;
    transition: .3s;
}
.include-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--verde-pastel);
}
.i-emoji {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.1));
}
.include-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.include-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== RESULTS ========== */
.results-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: .3s;
}
.result-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.highlight-result {
    background: linear-gradient(145deg, #FFF1E0, #FFE0C4);
    border-color: transparent;
}
[data-theme="dark"] .highlight-result {
    background: linear-gradient(145deg, #2A1F15, #1F160D);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--verde-pastel), var(--verde-oscuro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.highlight-result .result-number {
    background: linear-gradient(135deg, #FF8C42, #D66A1F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.result-desc {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.result-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========== PRICING ========== */
.pricing {
    max-width: 600px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}
.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--verde-pastel);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(126,215,166,0.2);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--verde-pastel), var(--verde-oscuro));
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(126,215,166,0.4);
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.price-from {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}
.price-new {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--verde-pastel), var(--verde-oscuro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-tag {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}
.price-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
}
.price-features i { color: var(--verde-pastel); }
.trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.trust-row i { color: var(--verde-pastel); margin-right: 4px; }

/* ========== FAQ ========== */
.faq {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    transition: .3s;
}
.faq-item[open] {
    border-color: var(--verde-pastel);
    box-shadow: 0 10px 30px rgba(126,215,166,0.15);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--verde-pastel);
    transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== CTA FINAL ========== */
.cta-final {
    max-width: 900px;
    margin: 3rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-dark);
    color: var(--beige);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--verde-pastel) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
}
.cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}
.cta-final h2 em {
    font-style: italic;
    color: var(--verde-pastel);
}
.cta-sub {
    opacity: 0.85;
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.05rem;
}