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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #080714;
    color: #e8e0f0;
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.cinzel {
    font-family: 'Cinzel Decorative', serif;
}

.playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ===== PARTICLES ===== */
/* ===== UTILS ===== */
.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(212, 175, 55, .12);
    color: #f5d77a;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}

.section-desc {
    opacity: .55;
    font-size: .95rem;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    /* Cambiado a bordes redondeados premium como tu segunda imagen */
    background: linear-gradient(135deg, #b38f2d 0%, #fce08d 50%, #b38f2d 100%);
    background-size: 200% 200%;
    color: #080714 !important;
    /* Texto oscuro ultra legible */
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-shiny {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
}

.btn-shiny:hover,
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    opacity: 0.95;
}

/* Asegurar que la línea de brillo resalte bien sobre el nuevo degradado */

.btn-shiny .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%
            /* Corregido aquí sin el guion */
        );
    transform: skewX(-25deg);
    animation: shineEffect 3.5s infinite ease-in-out;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, .35);
}

.btn-big {
    font-size: 1.05rem;
    padding: 18px 40px;
    width: 100%;
    max-width: 520px;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    gap: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.4;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Cambiamos el degradado con blur por una capa oscura sólida optimizada */
    background: linear-gradient(to bottom, rgba(8, 7, 20, 0.6), rgba(8, 7, 20, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 580px;
    flex-shrink: 0;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    font-size: .82rem;
    color: #f5d77a;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
    font-size: 1rem;
    opacity: .7;
    margin-bottom: 32px;
}

.hero-actions {
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: .85rem;
    opacity: .6;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ===== PRODUCT MOCKUP ===== */
.product-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.mockup-screen {
    position: relative;
    width: 80%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: 0.5s;
}

.mockup-screen:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.wave-animation {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.wave-animation span {
    width: 4px;
    background: #f5d77a;
    border-radius: 2px;
    height: 15px;
}

.wave-animation span:nth-child(1) {
    height: 10px;
}

.wave-animation span:nth-child(2) {
    height: 25px;
}

.wave-animation span:nth-child(3) {
    height: 15px;
}

.wave-animation span:nth-child(4) {
    height: 20px;
}

.mockup-phones {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 60%;
    z-index: 2;
    transform: translateZ(50px);
}

.mockup-phones img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* ===== PAIN ===== */
.pain-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pain-card {
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: .4s;
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .15);
}

.pain-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pain-card p {
    font-size: .95rem;
    opacity: .7;
}

.pain-card strong {
    color: #f5d77a;
}

.pain-closer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #f5d77a;
    opacity: .8;
}

/* ===== SOLUTION ===== */
.solution-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    padding: 32px 24px;
    text-align: center;
    transition: .4s;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, .15);
}

.sol-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.solution-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #fff;
}

.solution-card p {
    font-size: .88rem;
    opacity: .55;
}

/* ===== AUDIOS ===== */
.audios-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.audios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.audio-card {
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.audio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, .2);
    box-shadow: 0 20px 60px rgba(212, 175, 55, .08);
}

.audio-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.6rem;
    font-weight: 900;
    opacity: .06;
    color: #d4af37;
}

.audio-emoji {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.audio-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f5d77a;
}

.audio-tagline {
    font-size: .92rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
}

.audio-desc {
    font-size: .82rem;
    opacity: .45;
    margin-bottom: 16px;
}

.audio-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.audio-benefits li {
    font-size: .85rem;
    opacity: .65;
}

/* ===== BONUSES ===== */
.bonus-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .04), transparent 60%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.bonus-card {
    padding: 28px;
    transition: .4s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .15);
}

.bonus-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(212, 175, 55, .15);
    color: #f5d77a;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.bonus-card p {
    font-size: .85rem;
    opacity: .5;
    margin-bottom: 14px;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    text-decoration: line-through;
    opacity: .4;
    font-size: .9rem;
}

.price-free {
    color: #22c55e;
    font-weight: 700;
    font-size: .85rem;
}

.bonus-note {
    text-align: center;
    font-size: 1.1rem;
    color: #f5d77a;
    opacity: .7;
}

.bonus-unlock-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.bonus-unlock-note {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    color: #f5d77a;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease forwards;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.pricing-table {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .9rem;
}

.pricing-row span:first-child {
    text-align: left;
    flex: 1;
    opacity: .7;
}

.pricing-row .price-old {
    font-size: .85rem;
}

.included {
    color: #22c55e;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 1px;
}

.pricing-total {
    padding: 24px 0;
    margin-top: 8px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
}

.total-old {
    text-decoration: line-through;
    opacity: .4;
    font-size: 1.2rem;
}

.total-line.final {
    font-size: 1.1rem;
}

.total-price {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #f5d77a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-table .btn-gold {
    margin-top: 24px;
}

.pricing-secure {
    margin-top: 16px;
    font-size: .8rem;
    opacity: .4;
}

/* ===== FOR SECTION ===== */
.for-section {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.for-card {
    padding: 32px;
}

.for-card h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.for-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.for-card li {
    font-size: .9rem;
    opacity: .65;
    padding-left: 8px;
}

.for-yes {
    border-color: rgba(34, 197, 94, .15);
}

.for-yes h3 {
    color: #22c55e;
}

.for-no {
    border-color: rgba(239, 68, 68, .12);
}

.for-no h3 {
    color: #ef4444;
}

/* ===== GUARANTEE ===== */
.guarantee-section {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guarantee-card h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #f5d77a;
}

.guarantee-card p {
    opacity: .6;
    font-size: .95rem;
}

.guarantee-card strong {
    color: #22c55e;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px;
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .15);
}

.testimonial-stars {
    color: #f5d77a;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card>p {
    font-size: .92rem;
    opacity: .65;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: .92rem;
}

.testimonial-author span {
    font-size: .78rem;
    opacity: .45;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 20px 24px;
    cursor: pointer;
    transition: .3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, .15);
}

.faq-item summary {
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #d4af37;
    transition: .3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 14px;
    font-size: .88rem;
    opacity: .55;
    padding-right: 30px;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .06), transparent 50%);
}

.cta-quote {
    font-size: 1.2rem;
    color: #f5d77a;
    opacity: .6;
    margin-bottom: 16px;
}

.cta-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    max-width: 650px;
    margin: 0 auto 20px;
    font-weight: 400;
    opacity: .8;
}

.cta-summary {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: .7;
}

.cta-summary strong {
    color: #f5d77a;
    font-size: 1.4rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-brand {
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 6px;
}

.footer-sub {
    font-size: .82rem;
    opacity: .35;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: .75rem;
    opacity: .25;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: .7;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px 50px;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .for-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .hero {
        padding: 70px 20px 40px;
        min-height: auto;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .pain-section,
    .solution-section,
    .audios-section,
    .bonus-section,
    .pricing-section,
    .for-section,
    .guarantee-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .audios-grid {
        grid-template-columns: 1fr;
    }

    .btn-big {
        font-size: .92rem;
        padding: 16px 24px;
    }

    .pricing-table {
        padding: 28px 20px;
    }

    .product-mockup {
        margin: 40px auto 0;
        max-width: 400px;
        position: relative;
        height: 350px;
    }

    .mockup-screen {
        width: 90%;
        margin: 0 auto;
        transform: none;
        position: relative;
        z-index: 1;
    }

    .mockup-phones {
        width: 60%;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        z-index: 2;
        position: absolute;
    }

    .bonus-unlock-note {
        font-size: 0.85rem;
        padding: 12px 20px;
        border-radius: 16px;
        line-height: 1.4;
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .product-mockup {
        max-width: 280px;
        margin: 40px auto 0;
        height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mockup-screen {
        width: 100%;
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .mockup-phones {
        position: absolute;
        width: 85%;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        z-index: 2;
    }
}

/* ===== NUEVO CONTADOR DE URGENCIA ===== */
.urgency-box {
    padding: 16px 24px;
    margin-bottom: 28px;
    border-color: rgba(212, 175, 55, 0.3);
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.urgency-box p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-box strong {
    color: #f5d77a;
    font-weight: 600;
}

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

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.time-box span {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.time-box small {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-top: 4px;
}

.colon {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    animation: pulse 1s infinite;
}

/* ===== DISEÑO DE BOTONES OPTIMIZADOS Y PREMIUM ===== */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
}

/* El botón principal con efecto de reflejo metálico */
.btn-shiny {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-shiny:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* La línea de brillo animada */
.btn-shiny .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    /* Animación fluida de 3 segundos repetitiva */
    animation: shineEffect 3s infinite ease-in-out;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Botón Secundario "Conocer el sistema" */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(212, 175, 55, 0.4);
}

.btn-secondary svg {
    transition: transform 0.2s ease;
}

.btn-secondary:hover svg {
    transform: translateY(2px);
}

/* Adaptabilidad para dispositivos móviles */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-shiny,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== STICKY CTA PARA MÓVIL (ZONA CALIENTE) ===== */
.sticky-mobile-cta {
    position: fixed;
    bottom: -100px;
    /* Inicia oculto abajo */
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: rgba(8, 7, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    /* Asegura estar por encima de todo */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    /* Oculto por defecto */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-mobile-cta a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem !important;
    padding: 14px 20px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
}

/* Solo se activa en pantallas móviles */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
        /* Se habilita el contenedor */
    }

    /* Clase activa que inyectará JavaScript mediante scroll */
    .sticky-mobile-cta.active {
        transform: translateY(-100px);
        /* Sube suavemente a su posición visible */
    }
}

/* ===== NUEVA SECCIÓN DE CIENCIA DETRÁS ===== */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #f5d77a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 en computadoras */
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.science-card {
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.science-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.science-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.science-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.4;
}

.science-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(232, 224, 240, 0.75);
}

/* Frase de cierre con estilo premium */
.science-closure {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.science-closure p {
    font-size: 1.25rem;
    color: #f5d77a;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .science-grid {
        grid-template-columns: 1fr;
        /* 1 columna en celular */
        gap: 16px;
    }

    .science-card {
        padding: 24px;
    }

    .science-closure p {
        font-size: 1.1rem;
    }
}

/* ===== SECCIÓN: QUIÉN ESTÁ DETRÁS (THE QUANTUM REALITY) ===== */
.about-section {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.about-story p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(232, 224, 240, 0.85);
    margin-bottom: 20px;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story .story-highlight {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    border-left: 3px solid #f5d77a;
    padding-left: 20px;
    margin-bottom: 28px;
}

.about-story strong {
    color: #f5d77a;
}

/* Grilla de Credenciales de 3 Columnas */
.about-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.credential-col {
    padding: 28px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.credential-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.credential-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.credential-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(232, 224, 240, 0.7);
}

.credential-col .countries {
    color: #f5d77a;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Optimización para Dispositivos Móviles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-story {
        padding: 24px;
    }

    .about-story .story-highlight {
        font-size: 1.1rem;
        padding-left: 14px;
    }

    .about-credentials {
        grid-template-columns: 1fr;
        /* Pasa a ser una sola columna en celular */
        gap: 16px;
    }

    .credential-col {
        padding: 24px;
    }
}

/* ===== COMPONENTE DE PRUEBA SOCIAL EN HERO (ESTILIZADO Y CON AIRE) ===== */
/* ===== BADGE HERO REFINADO (MÁXIMA ESTÉTICA) ===== */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 50px;
    margin-top: 24px;


    /* Le damos un espacio generoso para que no choque con "Resultados Exponenciales" */
    margin-bottom: 45px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-social-proof .stars {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #f5d77a;
    /* Color oro directo para las estrellas */
}

.hero-social-proof .proof-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(232, 224, 240, 0.8);
}

/* En celulares reducimos el margen para mantener el equilibrio de la pantalla */
@media (max-width: 768px) {
    .hero-social-proof {
        margin-bottom: 30px;
        padding: 6px 14px;
    }

    .hero-social-proof .proof-text {
        font-size: 0.75rem;
    }
}


/* Ajuste fino para celulares */
@media (max-width: 480px) {
    .hero-social-proof {
        gap: 6px;
        padding: 10px 18px;
        margin-bottom: 32px;
        /* Espacio equilibrado en pantallas pequeñas */
    }

    .hero-social-proof .proof-text {
        font-size: 0.8rem;
    }
}