/* ============================================
   KARAOKEANDO - Réplica fiel del sitio original
   ============================================ */

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

:root {
    --color-text: #ffffff;
    --color-text-light: #cccccc;
    --color-bg: #1a1a2e;
    --color-bg-alt: #16213e;
    --color-accent: #ff8200;
    --color-accent-dark: #e67300;
    --color-accent-glow: rgba(255, 130, 0, 0.25);
    --color-dark: #0f0f1a;
    --color-gold: #f5a623;
    --color-whatsapp: #25d366;
    --color-border: rgba(255,255,255,0.12);
    --color-text-yellow: #ffff99;
    --font-main: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Righteous', 'Montserrat', Arial, sans-serif;
    --max-width: 1100px;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    /* Dot grid sutil + gradiente de fondo */
    background-image:
        radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    background-size: 28px 28px, 100% 100%;
}

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

ul { list-style: none; }

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(15, 15, 26, 0.97);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s;
}

.header--scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.header__logo-img {
    height: 34px;
    width: auto;
    max-width: none;
}

.header__logo--text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 32px;
    transition: opacity 0.2s;
}

.header__logo--text:hover {
    opacity: 0.85;
}

/* Micrófono que reemplaza la "O" de karaOke */
.header__logo-mic {
    height: 0.95em;
    width: auto;
    fill: currentColor;
    margin: 0 -0.04em;
    transform: translateY(-0.03em);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-accent);
}

.nav__link--cta {
    background: var(--color-accent);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.nav__link--cta:hover {
    background: var(--color-accent-dark);
    color: #fff !important;
}

/* Hamburger */
.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: url('../MEDIA/IMG_20220809_195732.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Luces de escenario animadas */
.hero__lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero__light {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: light-float 14s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero__light--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255,130,0,0.28) 0%, transparent 70%);
    top: -120px;
    left: -80px;
    animation-duration: 16s;
    animation-delay: 0s;
}

.hero__light--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(138,43,226,0.22) 0%, transparent 70%);
    top: 20%;
    right: -60px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.hero__light--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
    bottom: -60px;
    left: 35%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.hero__light--4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,180,255,0.15) 0%, transparent 70%);
    top: 40%;
    left: 15%;
    animation-duration: 22s;
    animation-delay: -7s;
}

@keyframes light-float {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(40px, -30px) scale(1.08); }
    50%  { transform: translate(-20px, 40px) scale(0.94); }
    75%  { transform: translate(30px, 20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.38) 0%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 2;
}

/* Luces visibles encima del overlay */
.hero__lights { z-index: 3; }

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.hero__highlight {
    color: var(--color-accent);
    display: block;
    text-shadow: 0 0 40px rgba(255,130,0,0.45), 0 2px 24px rgba(0,0,0,0.9);
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.hero__subtitle strong {
    color: #fff;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Separadores entre estadísticas */
.hero__stats .stat + .stat {
    padding-left: 48px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
    .hero__stats .stat + .stat {
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
}

/* Buttons */
.hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--color-whatsapp);
    color: #fff;
}

.btn--primary:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.btn--secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn--secondary:hover {
    background: rgba(255,255,255,0.25);
}

.btn--accent {
    background: var(--color-accent);
    color: #fff;
}

.btn--accent:hover {
    background: var(--color-accent-dark);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn__icon { flex-shrink: 0; }

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 18px;
    color: var(--color-accent);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-accent-glow);
}

.section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Glow sutil en títulos de sección */
.section__title {
    text-shadow: 0 0 40px rgba(255,130,0,0.2);
}

/* ============================================
   HERO MARQUEE — texto gigante naranja desplazándose
   ============================================ */
.hero-marquee {
    background: #0a0a0a;
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(255,130,0,0.15);
    border-bottom: 1px solid rgba(255,130,0,0.15);
}

.hero-marquee__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-rtl 28s linear infinite;
    width: max-content;
}

@keyframes marquee-rtl {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-marquee__word {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    padding: 0 32px;
}

.hero-marquee__word--outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
}

.hero-marquee__sep {
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.4;
    padding: 0 8px;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-marquee__track { animation: none; }
}

/* ============================================
   ORPHEUS CARDS — imágenes en blob + texto abajo
   ============================================ */
.orpheus-cards {
    background: var(--color-dark);
    padding: 80px 20px;
    text-align: center;
}

.orpheus-cards__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 56px;
}

.orpheus-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.orpheus-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.orpheus-card__blob-wrap {
    display: block;
    margin-bottom: 8px;
}

/* Formas orgánicas diferentes para cada card */
.orpheus-card__blob {
    width: 210px;
    height: 210px;
    overflow: hidden;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    transition: border-radius 0.6s ease, transform 0.5s ease;
}

.orpheus-card__blob--2 {
    border-radius: 40% 60% 45% 55% / 60% 40% 58% 42%;
}

.orpheus-card__blob--3 {
    border-radius: 50% 50% 35% 65% / 45% 55% 45% 55%;
}

.orpheus-card:hover .orpheus-card__blob,
.orpheus-card:hover .orpheus-card__blob--2,
.orpheus-card:hover .orpheus-card__blob--3 {
    border-radius: 50%;
    transform: scale(1.05);
}

.orpheus-card__blob img,
.orpheus-card__blob--2 img,
.orpheus-card__blob--3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.orpheus-card:hover img {
    transform: scale(1.1);
}

.orpheus-card__tag {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
}

.orpheus-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}

.orpheus-card__desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 260px;
}

.orpheus-card__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 4px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    cursor: pointer;
}

.orpheus-card__btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

@media (max-width: 768px) {
    .orpheus-cards__grid { grid-template-columns: 1fr; gap: 48px; }
    .orpheus-card__blob,
    .orpheus-card__blob--2,
    .orpheus-card__blob--3 { width: 180px; height: 180px; }
}

/* ============================================
   FEATURE CARDS — 3 tarjetas imagen al estilo Orpheus
   ============================================ */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 540px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.feature-card:hover .feature-card__bg {
    transform: scale(1.08);
}

.feature-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.15) 100%
    );
    transition: background 0.4s;
}

.feature-card:hover .feature-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(15,5,0,0.6) 50%,
        rgba(0,0,0,0.25) 100%
    );
}

/* Borde naranja izquierdo entre cards */
.feature-card + .feature-card {
    border-left: 1px solid rgba(255,130,0,0.2);
}

.feature-card__inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__inner {
    transform: translateY(0);
}

.feature-card__tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s, gap 0.3s;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s;
}

.feature-card:hover .feature-card__link {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
        height: auto;
    }
    .feature-card {
        height: 300px;
    }
    .feature-card + .feature-card {
        border-left: none;
        border-top: 1px solid rgba(255,130,0,0.2);
    }
    .feature-card__link {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   STATS BAR — 4 grandes números al estilo Orpheus
   ============================================ */
.stats-bar {
    background: var(--color-dark);
    border-top: 1px solid rgba(255,130,0,0.2);
    border-bottom: 1px solid rgba(255,130,0,0.2);
    padding: 56px 20px;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-bar__item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.stats-bar__item + .stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stats-bar__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    margin-bottom: 6px;
    display: block;
}

.stats-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
}

.stats-bar__number sup {
    font-size: 0.45em;
    vertical-align: super;
    letter-spacing: 0;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
    .stats-bar__item:nth-child(3)::before {
        display: none;
    }
}

/* ============================================
   TEXT BANNER — frase grande al estilo Orpheus
   ============================================ */
.text-banner {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.text-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,130,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.text-banner__quote {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    margin-bottom: 24px;
}

.text-banner__quote span {
    color: var(--color-accent);
}

.text-banner__sub {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* --- Propuesta (debajo del hero) --- */
.propuesta {
    background: linear-gradient(135deg, #16213e 0%, #0f1623 100%);
    padding: 56px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid rgba(255,130,0,0.2);
    position: relative;
    overflow: hidden;
}

.propuesta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(255,130,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.propuesta__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.85;
    position: relative;
}

.propuesta__text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.propuesta__highlight {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-yellow);
    margin-top: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,153,0.3);
    border-radius: 4px;
    background: rgba(255,255,153,0.05);
}

/* --- Servicios --- */
.servicios__desc {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 8px auto 48px;
    line-height: 1.8;
}

.servicios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servicio-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    padding: 28px 28px 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
}

.servicio-card {
    cursor: default;
}

.servicio-card:hover {
    background: rgba(255,130,0,0.06);
    box-shadow: 0 4px 24px rgba(255,130,0,0.12);
    transform: translateX(4px);
    border-left-color: var(--color-accent);
}

.servicio-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,130,0,0.12);
    border-radius: 8px;
    color: var(--color-accent);
    transition: background 0.3s, color 0.3s;
}

.servicio-card:hover .servicio-card__icon {
    background: rgba(255,130,0,0.22);
}

.servicio-card__body { flex: 1; }

.servicio-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 0.3px;
}

.servicio-card__text {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
}

/* --- Rating / Testimonios --- */
.rating-header {
    text-align: center;
    margin-bottom: 40px;
}

.rating-header__score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-accent);
}

.rating-header__stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    display: block;
    margin: 4px 0;
}

.rating-header__count {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.testimonio-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    border-radius: 0 0 8px 8px;
    padding: 28px 24px 24px;
    position: relative;
}

.testimonio-card::before {
    content: '\201C';
    position: absolute;
    top: -22px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.35;
    pointer-events: none;
}

.testimonio-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.testimonio-card__author {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-accent);
}

.testimonio-card__stars {
    color: var(--color-gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonio-card__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Reseñas extra ocultas */
.testimonio-card--extra {
    display: none;
}

.testimonio-card--extra.visible {
    display: block;
    animation: fadeInUp 0.4s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonios__more {
    text-align: center;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.testimonios__more .btn {
    gap: 8px;
    cursor: pointer;
}

.testimonios__more .btn svg {
    transition: transform 0.3s;
}

.testimonios__more .btn.expanded svg {
    transform: rotate(180deg);
}

.testimonios__google-link a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: color 0.2s;
}

.testimonios__google-link a:hover {
    color: var(--color-accent);
}

/* --- Videos --- */
.videos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--color-border);
}

.video-card video {
    width: 100%;
    display: block;
}

.video-card--vertical video {
    aspect-ratio: 9/16;
    object-fit: contain;
    max-height: 500px;
}

.video-card--horizontal video {
    aspect-ratio: 16/9;
    object-fit: contain;
}

/* --- Galería Masonry --- */
.galeria__masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria__item {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galeria__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.galeria__overlay span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.galeria__item:hover img {
    transform: scale(1.05);
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
}

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

@media (max-width: 500px) {
    .galeria__masonry { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 12px; }
}

/* --- Sección dividida (split) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.split__image {
    position: relative;
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.split__image:hover img {
    transform: scale(1.04);
}

.split__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,130,0,0.15) 0%,
        rgba(15,15,26,0.3) 100%
    );
}

.split__content {
    background: var(--color-bg-alt);
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.split__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
    display: block;
}

.split__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.split__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 460px;
}

.split__text strong {
    color: #fff;
}

.split__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.split__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.split__features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.split__features strong {
    color: #fff;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split__image {
        min-height: 320px;
    }

    .split__content {
        padding: 48px 32px;
    }
}

/* --- Video principal --- */
.video-principal {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.video-principal video {
    width: 100%;
    display: block;
}

/* --- Clientes --- */
.clientes__lista {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clientes__nombres {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.88rem;
    color: var(--color-text-yellow, #ffff99);
    line-height: 1;
    animation: marquee 40s linear infinite;
    padding-right: 80px;
}

.clientes__lista:hover .clientes__nombres {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --- FAQ --- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--color-text-light);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p,
.faq__answer ul {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq__answer ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.faq__answer ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.faq__answer strong {
    color: var(--color-accent);
}

/* --- Contacto --- */
.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contacto__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contacto__item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.contacto__item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 2px;
}

.contacto__item a,
.contacto__item span {
    color: #ffffff;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.contacto__item a:hover {
    color: var(--color-accent);
}

.contacto__redes {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.contacto__redes a {
    color: #ffffff;
    transition: color 0.3s;
}

.contacto__redes a:hover {
    color: var(--color-accent);
}

.contacto__cta-box {
    background: rgba(255,130,0,0.08);
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    padding: 40px 36px;
    text-align: center;
}

.contacto__cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--color-accent);
}

.contacto__cta-box p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: #0a0a14;
    color: #fff;
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: #fff;
}

.footer__copy p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .servicios__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero__stats { gap: 32px; }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0f0f1a;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.3s;
        border-left: 1px solid var(--color-border);
        box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu-btn {
        display: flex;
    }

    .servicios__grid,
    .testimonios__grid {
        grid-template-columns: 1fr;
    }

    .videos__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__stats { gap: 20px; }

    .stat__number { font-size: 1.5rem; }

    .section { padding: 60px 0; }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .galeria__item img { height: 100%; }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

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

    .contacto__cta-box { padding: 28px 20px; }

    .hero { min-height: 75vh; }
}

/* ============================================
   CROSSFADER 3 VÍAS — Comparador de pistas
   Original ← slider → Karaokeando IA ← slider → Genérico
   ============================================ */

.crossfader {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 36px 32px;
}

/* Las 3 etiquetas de fuente */
.cf__tracks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.cf__track-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.03);
    text-align: center;
    transition: all 0.35s;
    opacity: 0.45;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.cf__track-label:hover { opacity: 0.85; border-color: currentColor; }
.cf__track-label:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.cf__track-label.active {
    opacity: 1;
    border-color: currentColor;
}

.cf__track-label--1 { color: #7ecfff; }
.cf__track-label--1.active { background: rgba(126,207,255,0.08); }

.cf__track-label--2 { color: var(--color-accent); }
.cf__track-label--2.active {
    background: rgba(255,130,0,0.1);
    box-shadow: 0 0 20px rgba(255,130,0,0.15);
}

.cf__track-label--3 { color: #b0b0b0; }
.cf__track-label--3.active { background: rgba(180,180,180,0.07); }

.cf__track-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cf__track-dot--1 { background: #7ecfff; }
.cf__track-dot--2 { background: var(--color-accent); box-shadow: 0 0 8px rgba(255,130,0,0.6); }
.cf__track-dot--3 { background: #b0b0b0; }

.cf__track-label strong {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: block;
}

.cf__track-label span {
    font-size: 0.72rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* Botón play */
.cf__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.cf__play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(255,130,0,0.3);
}

.cf__play-btn:hover { background: var(--color-accent-dark); transform: scale(1.06); }

.cf__play-btn.playing {
    animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(255,130,0,0.4); }
    70%  { box-shadow: 0 0 0 20px rgba(255,130,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,130,0,0); }
}

.cf__playing-label {
    font-size: 0.82rem;
    color: var(--color-accent);
    text-align: center;
    font-family: var(--font-heading);
    min-height: 1.2em;
    letter-spacing: 0.3px;
}

/* Slider + marcadores de posición */
.cf__slider-wrap {
    position: relative;
}

.cf__track-markers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 8px;
}

.cf__track-markers span {
    font-size: 0.68rem;
    color: var(--color-text-light);
    line-height: 1.3;
    text-align: center;
}

.cf__track-markers span:first-child { text-align: left; }
.cf__track-markers span:last-child  { text-align: right; }

.cf__track-wrap {
    position: relative;
    padding: 6px 0;
}

/* Zonas de color bajo el slider */
.cf__zone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 3px;
    pointer-events: none;
    width: 50%;
}

.cf__zone--left  { left: 0;   background: linear-gradient(90deg, rgba(126,207,255,0.5), rgba(255,130,0,0.5)); }
.cf__zone--right { right: 0;  background: linear-gradient(90deg, rgba(255,130,0,0.5), rgba(180,180,180,0.5)); }

.cf__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cf__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    cursor: grab;
    border: 3px solid var(--color-accent);
    transition: transform 0.15s, border-color 0.3s;
}

.cf__range::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.cf__range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    cursor: grab;
    border: 3px solid var(--color-accent);
}

/* Nota de configuración */
.cf__no-audio {
    margin-top: 28px;
    padding: 12px 16px;
    background: rgba(255,255,153,0.06);
    border: 1px solid rgba(255,255,153,0.2);
    border-radius: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,153,0.8);
    text-align: center;
    line-height: 1.6;
}

.cf__no-audio code {
    background: rgba(255,255,255,0.1);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.78rem;
}

.cf__no-audio.hidden { display: none; }

@media (max-width: 560px) {
    .crossfader { padding: 24px 16px 20px; }
    .cf__play-btn { width: 58px; height: 58px; }
    .cf__track-label strong { font-size: 0.75rem; }
    .cf__track-label span { display: none; }
}

/* ============================================
   ACCESIBILIDAD — prefers-reduced-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .clientes__nombres { animation: none; }
    .fade-in { opacity: 1; transform: none; }
    .cf__play-btn.playing { animation: none; }
    .hero__lights { display: none; }
}
