/* ============================================
   MACCAM STUDIO — v2
   Estilo: oscuro, premium, animado
============================================ */

:root {
    --studio-bg:        #06060A;
    --studio-bg-card:   #0E0E18;
    --studio-bg-hover:  #14141F;
    --studio-text:      #FFFFFF;
    --studio-text-muted:#8888A0;
    --studio-border:    rgba(255,255,255,0.07);
    --font: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --pad-x: clamp(20px, 5vw, 64px);
    --t: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); -webkit-font-smoothing: antialiased; line-height: 1.65; background: var(--studio-bg); color: var(--studio-text); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.container--sm { max-width: 760px; }

/* ============================================
   HEADER
============================================ */
.studio-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
.studio-header.scrolled {
    background: rgba(6,6,10,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.studio-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.studio-header__logo img { width: 100px; height: auto; }

/* NAV */
.studio-nav { display: flex; align-items: center; gap: 32px; }
.studio-nav__link {
    color: var(--studio-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--t);
}
.studio-nav__link:hover { color: var(--studio-text); }
.studio-nav__link--brand {
    color: var(--studio-text);
    padding: 8px 18px;
    border: 1px solid var(--studio-border);
    border-radius: 100px;
    transition: background var(--t), border-color var(--t);
}
.studio-nav__link--brand:hover { background: var(--studio-bg-hover); border-color: rgba(255,255,255,0.15); }
.studio-nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.studio-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--studio-text); border-radius: 2px; transition: var(--t); }

/* ============================================
   HERO — FONDO ANIMADO TIPO VIDEO
============================================ */
.studio-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--studio-bg);
}
.studio-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.studio-hero__tag    { margin-bottom: 32px; }
.studio-hero__title  { margin-bottom: 32px; }
.studio-hero__sub    { margin-bottom: 48px; }

/* Video de fondo */
.studio-hero__video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.studio-hero__video {
    position: absolute;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.studio-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,6,10,0.85) 0%, rgba(6,6,10,0.65) 100%);
}

/* Fondo animado (sobre el video) */
.studio-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.studio-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Orbs animados (efecto video) */
.studio-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.studio-orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(30,40,104,0.6) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: orbFloat1 12s infinite alternate;
}
.studio-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(204,31,40,0.2) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    animation: orbFloat2 16s infinite alternate;
}
.studio-orb--3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    top: 30%; right: 30%;
    animation: orbFloat3 20s infinite alternate;
}
@keyframes orbFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -60px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(0.9); }
}

/* Hero content */
.studio-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--studio-text-muted);
    border: 1px solid var(--studio-border);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 36px;
}
.studio-hero__dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.studio-hero__title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}
.studio-hero__title--accent {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.studio-hero__sub {
    font-size: 1.125rem;
    color: var(--studio-text-muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 40px;
}
.studio-hero__sub a { color: var(--studio-text); border-bottom: 1px solid var(--studio-border); transition: border-color var(--t); }
.studio-hero__sub a:hover { border-color: var(--studio-text); }
.studio-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll hint */
.studio-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.studio-scroll-hint__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   STATS / CIFRAS DE VALOR
============================================ */
.studio-stats {
    padding: 80px 0;
    background: var(--studio-bg);
}
.studio-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.studio-stat {
    background: var(--studio-bg-card);
    border: 1px solid var(--studio-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.studio-stat:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.studio-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.studio-stat:nth-child(1)::before { background: linear-gradient(90deg, #991B1B, #F97316); }
.studio-stat:nth-child(2)::before { background: linear-gradient(90deg, #F97316, #A855F7); }
.studio-stat:nth-child(3)::before { background: linear-gradient(90deg, #A855F7, #F97316); }
.studio-stat:nth-child(4)::before { background: linear-gradient(90deg, #F97316, #DC2626); }

.studio-stat__num {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--studio-text);
    margin-bottom: 10px;
    line-height: 1;
}
.studio-stat:nth-child(1) .studio-stat__num { background: linear-gradient(90deg, #991B1B, #F97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.studio-stat:nth-child(2) .studio-stat__num { background: linear-gradient(90deg, #F97316, #A855F7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.studio-stat:nth-child(3) .studio-stat__num { background: linear-gradient(135deg, #A855F7, #EC4899, #F97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.studio-stat:nth-child(4) .studio-stat__num { background: linear-gradient(90deg, #F97316, #DC2626); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.studio-stat__bar {
    height: 3px;
    background: var(--studio-border);
    border-radius: 3px;
    margin: 14px 0 12px;
    overflow: hidden;
}
.studio-stat__bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 1.5s ease;
}
.studio-stat:nth-child(1) .studio-stat__bar-fill { background: linear-gradient(90deg, #991B1B, #F97316); }
.studio-stat:nth-child(2) .studio-stat__bar-fill { background: linear-gradient(90deg, #F97316, #A855F7); }
.studio-stat:nth-child(3) .studio-stat__bar-fill { background: linear-gradient(90deg, #A855F7, #F97316); }
.studio-stat:nth-child(4) .studio-stat__bar-fill { background: linear-gradient(90deg, #F97316, #DC2626); }
.studio-stat__bar-fill.animated { width: 85%; }

.studio-stat__label {
    font-size: 0.78rem;
    color: var(--studio-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   MARCAS
============================================ */
.studio-brands {
    padding: clamp(80px, 12vw, 140px) 0;
}
.studio-section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--studio-text-muted);
    margin-bottom: 14px;
}
.studio-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}
.studio-brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* BRAND CARD */
.studio-brand-card {
    position: relative;
    background: var(--studio-bg-card);
    border: 1px solid var(--studio-border);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 360px;
    cursor: pointer;
}
.studio-brand-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Logo de cada card — todos igual de tamaño */
.studio-brand-card__logo-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.studio-brand-card__logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
}
.studio-brand-card__name-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--studio-text);
}

/* Info */
.studio-brand-card__info { display: flex; flex-direction: column; flex: 1; }
.studio-brand-card__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--studio-text-muted);
    margin-bottom: 10px;
}
.studio-brand-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.studio-brand-card__desc {
    font-size: 0.875rem;
    color: var(--studio-text-muted);
    line-height: 1.7;
    flex: 1;
}
.studio-brand-card__cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--studio-text);
    display: inline-block;
    margin-top: 20px;
    opacity: 0.6;
    transition: opacity var(--t);
}
.studio-brand-card:hover .studio-brand-card__cta { opacity: 1; }

/* Acentos de color */
.studio-brand-card__accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 200px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}
.studio-brand-card__accent--vyr     { background: radial-gradient(circle, rgba(204,31,40,0.2) 0%, transparent 70%); }
.studio-brand-card__accent--network { background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); }
.studio-brand-card__accent--plusview{ background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%); }

.studio-brand-card--plusview { border-color: rgba(99,102,241,0.12); }
.studio-brand-card--plusview:hover { border-color: rgba(99,102,241,0.35); }

/* ============================================
   ABOUT
============================================ */
.studio-about {
    padding: clamp(80px, 10vw, 120px) 0;
    border-top: 1px solid var(--studio-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.studio-about .container { position: relative; z-index: 1; }
.studio-about__text {
    font-size: 1.1rem;
    color: var(--studio-text-muted);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* ============================================
   BOTONES
============================================ */
.studio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.studio-btn--primary {
    background: var(--studio-text);
    color: var(--studio-bg);
    border-color: var(--studio-text);
}
.studio-btn--primary:hover {
    background: rgba(255,255,255,0.88);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.studio-btn--ghost {
    background: transparent;
    color: var(--studio-text-muted);
    border-color: var(--studio-border);
}
.studio-btn--ghost:hover {
    color: var(--studio-text);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
}

/* ============================================
   FOOTER
============================================ */
.studio-footer {
    padding: 40px 0;
    border-top: 1px solid var(--studio-border);
}
.studio-footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.studio-footer__left { display: flex; align-items: center; }
.studio-footer__right { display: flex; align-items: center; justify-content: flex-end; }
.studio-footer__copy { font-size: 0.85rem; color: var(--studio-text-muted); text-align: center; }
.studio-footer__copy a { color: var(--studio-text); transition: opacity var(--t); }
.studio-footer__copy a:hover { opacity: 0.7; }
.studio-footer__links { display: flex; gap: 24px; }
.studio-footer__links a { font-size: 0.85rem; color: var(--studio-text-muted); transition: color var(--t); }
.studio-footer__links a:hover { color: var(--studio-text); }

/* ============================================
   CURSOR PERSONALIZADO
============================================ */
* { cursor: none !important; }

.cursor-dot {
    position: fixed;
    top: -4px; left: -4px;
    width: 8px; height: 8px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.2s;
    will-change: transform;
}
.cursor-ring {
    position: fixed;
    top: -20px; left: -20px;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.3s ease, height 0.3s ease,
                top 0.3s ease, left 0.3s ease,
                border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
}
.cursor-ring--hover {
    width: 60px; height: 60px;
    top: -30px; left: -30px;
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
}

@media (hover: none) {
    /* En móvil/tablet táctil, restaurar cursor normal */
    * { cursor: auto !important; }
    .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   ANIMACIONES DE ENTRADA
============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease,
                border-color 0.35s ease, box-shadow 0.35s ease;
}
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados */
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.studio-stat:nth-child(1) { transition-delay: 0s; }
.studio-stat:nth-child(2) { transition-delay: 0.1s; }
.studio-stat:nth-child(3) { transition-delay: 0.2s; }
.studio-stat:nth-child(4) { transition-delay: 0.3s; }
.studio-brand-card:nth-child(1) { transition-delay: 0s; }
.studio-brand-card:nth-child(2) { transition-delay: 0.12s; }
.studio-brand-card:nth-child(3) { transition-delay: 0.24s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
    .studio-brands__grid { grid-template-columns: 1fr 1fr; }
    .studio-stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .studio-nav { display: none; }
    .studio-nav__toggle { display: flex; }
    .studio-nav.open {
        display: flex; flex-direction: column;
        position: fixed; inset: 0;
        background: var(--studio-bg);
        align-items: center; justify-content: center;
        gap: 32px; z-index: 999;
    }
    .studio-nav.open .studio-nav__link { font-size: 1.5rem; }
    .studio-brands__grid { grid-template-columns: 1fr; }
    .studio-stats__grid { grid-template-columns: 1fr 1fr; }
    .studio-footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .studio-footer__right { justify-content: center; }
    .studio-hero__ctas { flex-direction: column; }
}

/* ===== CLIENTS STRIP ===== */
.studio-clients {
    padding: 36px 0 40px;
    overflow: hidden;
}
.studio-clients__label {
    text-align: center;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 24px;
}
.studio-clients__track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.studio-clients__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 100px;
    white-space: nowrap;
    will-change: transform;
}
.studio-clients__track img {
    display: inline-block;
    height: 90px;
    width: auto;
    max-width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: grayscale(1) invert(1) brightness(1.1);
    filter: grayscale(1) invert(1) brightness(1.1);
    opacity: 0.35;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    vertical-align: middle;
}
.studio-clients__track img:hover { opacity: 0.8; }
@-webkit-keyframes clients-scroll {
    0%   { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    100% { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}
@keyframes clients-scroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ===== CONTACT CTA BIG ===== */
.studio-cta-big {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.studio-cta-big__link {
    display: block;
    position: relative;
    padding: 80px 5vw 72px;
    text-decoration: none;
    overflow: hidden;
    cursor: none;
}
.studio-cta-big__spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity .3s;
    opacity: 0;
    top: 50%;
    left: 50%;
    z-index: 0;
}
.studio-cta-big__link:hover .studio-cta-big__spotlight,
.studio-cta-big__link.hovered .studio-cta-big__spotlight {
    opacity: 1;
}
.studio-cta-big__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.studio-cta-big__tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.studio-cta-big__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7B6EF6;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(123,110,246,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(123,110,246,0); }
}
.studio-cta-big__arrow {
    color: rgba(255,255,255,0.3);
    transition: color .4s, transform .4s;
    transform: rotate(0deg);
}
.studio-cta-big__link:hover .studio-cta-big__arrow {
    color: #fff;
    transform: rotate(45deg);
}
.studio-cta-big__headline-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.studio-cta-big__headline {
    font-size: clamp(3.5rem, 13vw, 13rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.02em;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
    text-stroke: 1.5px rgba(255,255,255,0.18);
    transition: -webkit-text-stroke .5s, color .5s;
    -webkit-user-select: none;
    user-select: none;
}
.studio-cta-big__link:hover .studio-cta-big__headline {
    color: rgba(255,255,255,0.92);
    -webkit-text-stroke: 1.5px transparent;
    text-stroke: 1.5px transparent;
}
.studio-cta-big__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.studio-cta-big__sub {
    font-size: clamp(.85rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.35);
    transition: color .4s;
}
.studio-cta-big__link:hover .studio-cta-big__sub {
    color: rgba(255,255,255,0.7);
}
.studio-cta-big__url {
    font-size: .72rem;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.2);
    transition: color .4s;
}
.studio-cta-big__link:hover .studio-cta-big__url {
    color: rgba(255,255,255,0.5);
}
.studio-cta-big__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    overflow: hidden;
}
.studio-cta-big__line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7B6EF6, #fff, #7B6EF6);
    transition: width .6s cubic-bezier(.16,1,.3,1);
}
.studio-cta-big__link:hover .studio-cta-big__line-fill {
    width: 100%;
}
@media (max-width: 600px) {
    .studio-cta-big__link { padding: 56px 6vw 52px; }
    .studio-cta-big__url { display: none; }
}

/* ===== FOOTER CONTACT LINK ===== */
.studio-footer__contact {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    height: 1.2em;
    vertical-align: bottom;
    text-decoration: none;
    color: rgba(255,255,255,0.45);
}
.studio-footer__contact-default,
.studio-footer__contact-hover {
    display: block;
    transition: transform .35s cubic-bezier(.16,1,.3,1), color .35s;
    white-space: nowrap;
}
.studio-footer__contact-hover {
    position: absolute;
    top: 100%;
    left: 0;
    color: #fff;
}
.studio-footer__contact:hover .studio-footer__contact-default {
    transform: translateY(-100%);
    color: transparent;
}
.studio-footer__contact:hover .studio-footer__contact-hover {
    transform: translateY(-100%);
}

/* ===== FOOTER CONTACT — updated ===== */
.studio-footer__contact {
    position: relative;
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    letter-spacing: .04em;
    transition: color .3s;
}
.studio-footer__contact::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: width .4s cubic-bezier(.16,1,.3,1);
}
.studio-footer__contact:hover {
    color: #fff;
}
.studio-footer__contact:hover::after {
    width: 100%;
}

/* ===== HERO GIF ===== */
.studio-hero__gif {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.studio-hero__gif video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    opacity: 0.18;
}

/* ===== FOOTER GIF ===== */
.studio-footer__gif {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.75;
    pointer-events: all;
    cursor: pointer;
}

/* ===== CINEMATIC INTRO ===== */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.intro-overlay__top,
.intro-overlay__bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #06060A;
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro-overlay__top    { top: 0; }
.intro-overlay__bottom { bottom: 0; }

.intro-overlay__logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.intro-overlay__logo img {
    width: 120px;
    filter: brightness(0) invert(1);
}

/* Estado: logo visible */
.intro-overlay.logo-visible .intro-overlay__logo {
    opacity: 1;
}

/* Estado: split abierto */
.intro-overlay.split-open .intro-overlay__top {
    transform: translateY(-100%);
}
.intro-overlay.split-open .intro-overlay__bottom {
    transform: translateY(100%);
}
.intro-overlay.split-open .intro-overlay__logo {
    opacity: 0;
    transition: opacity 0.2s ease;
}
