/* =========================================
   Awwwards Level | Dark Bento Architecture
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #050505;
    --bento-bg: rgba(20, 20, 20, 0.4);
    --bento-border: rgba(255, 255, 255, 0.04);
    --bento-border-hover: rgba(255, 255, 255, 0.1);

    --text-pure: #ffffff;
    --text-muted: #888888;

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --accent-cyan: #00f2fe;
    --accent-magenta: #ff0844;
    --accent-gold: #f59e0b;

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3%3Ffilter id="noiseFilter"%3%3FfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3%3F/filter%3%3F%3Frect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/%3%3F/svg%3%3F');
}

.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: orbFloat 25s infinite alternate ease-in-out;
}
@media (min-width: 768px) {
    .orb { filter: blur(120px); }
}
@media (max-width: 767px) {
    .orb { filter: blur(40px); opacity: 0.1; }
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: var(--accent-magenta);
    top: -20%;
    left: -10%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-cyan);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(5%, 10%); }
}

#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-core {
    width: 40px;
    height: 4px;
    background: var(--text-pure);
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.loader-core::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-cyan);
    animation: loading 1s infinite ease-in-out;
}

@keyframes loading {
    100% { left: 100%; }
}

.page-loaded #page-transition {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    padding: 15px 5%;
    border-bottom: 1px solid var(--bento-border);
}
@media (min-width: 768px) {
    .navbar.scrolled {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}
@media (max-width: 767px) {
    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
    }
}

.brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-pure);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.brand span {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-pure);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-pure);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(5px);
}

.nav-links a.active::before {
    opacity: 1;
    transform: translateY(0);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    border: none;
    background: transparent;
    padding: 10px;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-pure);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 5% 50px;
}

.huge-title {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.95;
    margin-bottom: 20px;
    color: var(--text-pure);
}

.huge-title span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 242, 254, 0.2));
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.bento-box {
    background: var(--bento-bg);
    border: 1px solid var(--bento-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}
@media (min-width: 768px) {
    .bento-box {
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
    }
}
@media (max-width: 767px) {
    .bento-box {
        background: rgba(20, 20, 20, 0.85);
    }
}

.bento-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100px 100px, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.bento-box:hover {
    border-color: var(--bento-border-hover);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.bento-box:hover::before {
    opacity: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-pure);
    color: var(--bg-dark);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    background: #f0f0f0;
}

.btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--text-pure);
    border: 1px solid var(--bento-border);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--text-pure);
    background: rgba(255, 255, 255, 0.05);
}

.hero-bento {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 60px 40px;
    min-height: 50vh;
}

.feat-bento-1 { grid-column: span 4; }
.feat-bento-2 { grid-column: span 4; }
.feat-bento-3 { grid-column: span 4; }

.feat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    transition: var(--transition-smooth);
    animation: iconPulseFloat 4s ease-in-out infinite;
}

.bento-box:hover .feat-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.6));
    animation: none;
}

@keyframes iconPulseFloat {
    0% { filter: drop-shadow(0 5px 12px rgba(0, 242, 254, 0.2)); transform: translateY(0px); }
    50% { filter: drop-shadow(0 15px 20px rgba(255, 0, 255, 0.35)); transform: translateY(-3px); }
    100% { filter: drop-shadow(0 5px 12px rgba(0, 242, 254, 0.2)); transform: translateY(0px); }
}

.bento-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.bento-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 80%;
}

.bento-watermark {
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 14rem;
    opacity: 0.04;
    color: white;
    pointer-events: none;
    z-index: 0;
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 15px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bento-bg);
    border: 1px solid var(--bento-border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    border-color: var(--bento-border-hover);
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--text-pure);
    color: var(--bg-dark);
    border-color: var(--text-pure);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

.bento-benefits-section {
    width: 100%;
}

.benefits-title {
    transition: opacity 0.4s ease;
}

.benefits-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bento-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}
@media (min-width: 768px) {
    .benefit-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}
@media (max-width: 767px) {
    .benefit-card {
        background: rgba(25, 25, 25, 0.9);
    }
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.benefit-card:hover i {
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.benefit-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: var(--transition-smooth);
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-pure);
}

.benefit-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* ================================
   NUEVO: Grid for 4 Pricing Cards 
   ================================ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
    border-top: 1px solid var(--bento-border);
    padding: 30px 25px;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.plan-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.brand-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-block {
    display: flex;
    align-items: flex-start;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
    margin-right: 2px;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.5px;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-features li b {
    color: var(--text-pure);
    font-weight: 700;
}

.plan-features li i {
    font-size: 0.8rem;
    color: var(--text-pure);
}

.plan-card.highlight {
    border: 1px solid rgba(var(--color1-rgb), 0.4);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.4) 100%);
    box-shadow: 0 0 40px rgba(var(--color1-rgb), 0.1), inset 0 0 20px rgba(var(--color1-rgb), 0.05);
}

.plan-card.highlight:hover {
    border-color: rgba(var(--color1-rgb), 0.8);
    box-shadow: 0 0 60px rgba(var(--color1-rgb), 0.25), inset 0 0 30px rgba(var(--color1-rgb), 0.1);
    transform: translateY(-8px);
}

.plan-card.highlight .brand-name {
    color: var(--text-pure);
    text-shadow: 0 0 10px rgba(var(--color1-rgb), 0.5);
}

.plan-card.highlight .btn-primary {
    background: linear-gradient(135deg, #fff, #ddd);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.2);
}

.plan-card .btn-primary,
.plan-card .btn-secondary {
    padding: 14px;
    font-size: 0.85rem;
}

.badge-premium {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    font-weight: 800;
}

.faq-container {
    grid-column: span 12;
    padding: 60px;
    margin-top: 20px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-row {
    border-bottom: 1px solid var(--bento-border);
    padding: 25px 15px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: var(--radius-md);
    margin-bottom: 5px;
}

.faq-row:first-child {
    border-top: 1px solid transparent;
}

.faq-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-row:hover .faq-q {
    color: var(--text-pure);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-q i.fa-chevron-down {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a-inner {
    padding-top: 20px;
    padding-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-a-inner ul {
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.faq-a-inner li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.faq-a-inner li i {
    margin-top: 5px;
    color: var(--text-pure);
}

.faq-a-inner a {
    color: var(--text-pure);
    text-decoration: underline;
    font-weight: 700;
}

.faq-row.open {
    background: rgba(20, 20, 20, 0.8);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-row.open .faq-q {
    color: var(--text-pure);
}

.faq-row.open .faq-q i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px var(--accent-cyan));
}

.support-bento {
    grid-column: span 6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-bento {
    grid-column: span 6;
    padding: 40px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--bento-border);
    color: var(--text-pure);
}

.contact-link i {
    font-size: 1.8rem;
    color: var(--text-pure);
}

.input-block {
    margin-bottom: 25px;
    position: relative;
}

.input-block label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.input-block:focus-within label {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bento-border);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.form-input:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 1px var(--accent-cyan), 0 0 20px rgba(0, 242, 254, 0.15), inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.prime-info-bento,
.crunchy-info-bento,
.hbo-info-bento,
.tidal-info-bento {
    display: none;
    margin-top: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 40px;
    margin-top: 20px;
}

.info-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--bento-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition-smooth);
}
@media (min-width: 768px) {
    .info-card {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}
@media (max-width: 767px) {
    .info-card {
        background: rgba(20, 20, 20, 0.9);
    }
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-pure);
    filter: drop-shadow(0 0 12px rgba(0, 168, 225, 0.9));
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-pure);
}

.info-card p,
.info-card ul {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-card li i {
    font-size: 0.8rem;
    margin-top: 4px;
    margin-bottom: 0;
    color: #00A8E1;
    filter: none;
}

.ic-wide {
    grid-column: span 12;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.1), transparent);
    border-color: rgba(0, 168, 225, 0.3);
}

.ic-wide i {
    font-size: 3rem;
    margin-bottom: 0;
}

.ic-wide .ic-content {
    display: flex;
    flex-direction: column;
}

.ic-wide h4 {
    font-size: 1.4rem;
    color: #00A8E1;
    text-shadow: 0 0 10px rgba(0, 168, 225, 0.3);
}

.ic-half {
    grid-column: span 6;
}

.ic-third {
    grid-column: span 4;
}

.ic-alert {
    border-color: rgba(255, 8, 68, 0.3);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(255, 8, 68, 0.05));
}

.ic-alert i {
    color: var(--text-pure);
    filter: drop-shadow(0 0 12px rgba(255, 8, 68, 0.9));
}

.ic-alert li i {
    color: var(--text-pure);
    filter: drop-shadow(0 0 5px rgba(255, 8, 68, 0.8));
}

.ic-alert h4 {
    color: #ff0844;
    text-shadow: 0 0 10px rgba(255, 8, 68, 0.3);
}

.theme-crunchy .info-card i {
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.9));
}

.theme-crunchy .info-card li i {
    filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.8));
}

.theme-crunchy .ic-wide {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    border-color: rgba(255, 107, 0, 0.3);
}

.theme-crunchy .ic-wide h4 {
    color: #ff6b00;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.theme-hbo .info-card i {
    filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.9));
}

.theme-hbo .info-card li i {
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.8));
}

.theme-hbo .ic-wide {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), transparent);
    border-color: rgba(138, 43, 226, 0.3);
}

.theme-hbo .ic-wide h4 {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.theme-tidal .info-card i {
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.9));
}

.theme-tidal .info-card li i {
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.8));
}

.theme-tidal .ic-wide {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05), transparent);
    border-color: rgba(0, 242, 254, 0.3);
}

.theme-tidal .ic-wide h4 {
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.ic-info-cyan {
    border-color: rgba(0, 242, 254, 0.3);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(0, 242, 254, 0.05));
}

.ic-info-cyan i {
    color: var(--text-pure);
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.9));
}

.ic-info-cyan h4 {
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.btn-tune {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 100px;
    text-decoration: none;
    color: #00f2fe;
    font-weight: 700;
    transition: var(--transition-smooth);
    margin-top: 15px;
}

.btn-tune:hover {
    background: rgba(0, 242, 254, 0.2);
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .ic-half, .ic-third { grid-column: span 12; }
    .ic-wide { flex-direction: column; align-items: flex-start; text-align: left; }
    .ic-wide i { margin-bottom: 15px; }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: emerge 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

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

@media (max-width: 900px) {
    .feat-bento-1, .feat-bento-2, .feat-bento-3 { grid-column: span 12; }
    .support-bento, .form-bento { grid-column: span 12; padding: 40px; }
    .hero-bento { padding: 60px 40px; }
    .huge-title { font-size: 4rem; }
    .faq-container { padding: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 100px 20px 40px; }
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 40px; opacity: 0; pointer-events: none;
        transition: var(--transition-smooth); z-index: 1000;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
    .menu-btn { display: flex; }
    .menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { opacity: 0; }
    .menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .huge-title { font-size: 3rem; letter-spacing: -1.5px; }
    .subtitle { font-size: 1.1rem; }
    .hero-bento { padding: 40px 25px; }
    .bento-box { padding: 25px; border-radius: 24px; }
    .bento-box p { max-width: 100%; }
    .benefits-bento-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 10px; }
    .plans-grid { grid-template-columns: 1fr; }
    .faq-container h2 { font-size: 2.2rem; }
    .faq-q { font-size: 1.1rem; }
    .btn-primary, .btn-secondary { width: 100%; padding: 16px; }
    .filter-group {
        flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px;
        width: 100vw; margin-left: -20px; padding-left: 20px; padding-right: 20px;
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .filter-group::-webkit-scrollbar { display: none; }
    .filter-btn { white-space: nowrap; flex-shrink: 0; }
}

/* =========================================
   MODAL DE RECOMENDACIONES (GLASSMORPHISM)
   ========================================= */

.catalog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
    .catalog-modal-overlay {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}
@media (max-width: 767px) {
    .catalog-modal-overlay {
        background: rgba(0, 0, 0, 0.95);
    }
}

.catalog-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-bento {
    background: var(--bento-bg);
    border: 1px solid var(--bento-border);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    padding: 45px;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.modal-bento::-webkit-scrollbar { width: 6px; }
.modal-bento::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 10px; }

.catalog-modal-overlay.active .modal-bento {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bento-border);
    color: var(--text-pure);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    background: var(--text-pure);
    color: var(--bg-dark);
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: text-shadow 0.3s ease;
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-pure);
    margin-bottom: 10px;
}

.modal-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Contenedor elástico centrado en lugar de Grid rígido */
.recommendation-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Control exacto de ancho para cada tarjeta */
.rec-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--bento-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    flex: 1 1 180px;
}

.rec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.rec-image {
    width: 100%;
    height: 250px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--bento-border);
}

.rec-info {
    padding: 18px 15px;
    text-align: center;
}

.rec-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 6px;
}

.rec-tags {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .modal-bento { width: 95%; padding: 30px 20px; }
    .recommendation-grid { gap: 15px; }
    
    .rec-card { 
        flex: 1 1 140px; 
        max-width: 180px; 
    }
    
    .rec-image { height: 200px; }
    .modal-header h2 { font-size: 2rem; }
}

/* =========================================
   NUEVAS MEJORAS (FOOTER, MARQUEE, BANNERS)
   ========================================= */

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--accent-magenta), var(--accent-cyan));
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.top-banner span {
    animation: pulseText 2s infinite;
}
@keyframes pulseText {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}
.close-banner {
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Marquee / Carrusel Infinito */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--bento-border);
    border-bottom: 1px solid var(--bento-border);
    display: flex;
    white-space: nowrap;
    position: relative;
    grid-column: span 12;
    margin-bottom: 20px;
    border-radius: var(--radius-xl);
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollMarquee 20s linear infinite;
    padding-left: 60px;
}
.marquee-item {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.marquee-item:hover {
    color: var(--text-pure);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonios Bento */
.testimonial-bento {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-pure);
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-author div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}
.testimonial-author span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid var(--bento-border);
    padding: 60px 5% 30px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-pure);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--text-pure);
    padding-left: 5px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-pure);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--text-pure);
    color: var(--bg-dark);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .footer-social { justify-content: center; }
    .testimonial-bento { grid-column: span 12; }
}

/* =========================================
   FASE 4: PERU LOCALIZATION & CONVERSION
   ========================================= */

/* Floating WhatsApp Button */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: var(--transition-smooth);
    animation: wppPulse 2s infinite;
    text-decoration: none;
}
.floating-wpp:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #1EBE5D;
    color: white;
}
@keyframes wppPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
    .floating-wpp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* Payment Methods Strip */
.payment-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.payment-strip img {
    height: 25px;
    border-radius: 4px;
    object-fit: contain;
    background: white;
    padding: 2px 5px;
}
.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: -5px;
}
@media (max-width: 768px) {
    .payment-strip { justify-content: center; }
}

/* Button Shine Animation */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineBtn 4s infinite;
}
@keyframes shineBtn {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Small Payment Badge for Catalog Cards */
.card-payment-badge {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.card-payment-badge img {
    height: 12px;
    border-radius: 2px;
}

/* =========================================
   FASE 5: ADVANCED MARKETING & FOMO
   ========================================= */


/* Welcome Modal (Lead Capture) */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.welcome-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.welcome-modal {
    background: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.welcome-modal-overlay.active .welcome-modal {
    transform: translateY(0) scale(1);
}
.welcome-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, var(--accent-cyan));
}
.welcome-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.welcome-modal-close:hover {
    color: white;
    transform: rotate(90deg);
}
.welcome-modal-icon {
    font-size: 3rem;
    color: #F59E0B;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}
.welcome-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.welcome-modal p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.welcome-modal .coupon-code {
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    user-select: all;
}

/* =========================================
   FASE 7: ULTRA-PREMIUM VISUALS
   ========================================= */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, var(--accent-cyan));
    width: 0%;
    z-index: 10005;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* Spotlight Overlay for Bento Boxes */
.bento-box {
    position: relative;
    overflow: hidden; /* Ensure spotlight stays inside */
}
.bento-box > .spotlight-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 0) var(--mouse-y, 0), 
        rgba(255, 255, 255, 0.08),
        transparent 40%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}
.bento-box:hover > .spotlight-overlay {
    opacity: 1;
}

/* Make sure bento content stays above the spotlight */
.bento-box > *:not(.spotlight-overlay):not(.badge-premium):not(.bento-watermark) {
    position: relative;
    z-index: 1;
}
.bento-box > .badge-premium,
.bento-box > .bento-watermark {
    z-index: 2;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* =========================================
   FASE 6: UX PREMIUM & MICRO-INTERACTIONS
   ========================================= */


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid #F59E0B;
    color: #F59E0B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #F59E0B;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}
/* =========================================
   TEMA DISNEY+
   ========================================= */
.theme-disney .info-card i {
    filter: drop-shadow(0 0 12px rgba(0, 99, 229, 0.9));
}

.theme-disney .info-card li i {
    filter: drop-shadow(0 0 5px rgba(0, 99, 229, 0.8));
}

.theme-disney .ic-wide {
    background: linear-gradient(135deg, rgba(0, 99, 229, 0.1), transparent);
    border-color: rgba(0, 99, 229, 0.3);
}

.theme-disney .ic-wide h4 {
    color: #0063e5;
    text-shadow: 0 0 10px rgba(0, 99, 229, 0.3);
}