/* ===== VARIABLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@700;800&family=Jost:wght@300;400&display=swap');

:root {
    /* =============================================
       PALETA DE 4 MIEMBROS
       c1 = Laura   → Azul claro
       c2 = Alej.B  → Teal
       c3 = Alej.G  → Violeta
       c4 = Denis   → Coral
       primary = color UI global (azul claro = c1)
       ============================================= */
    --c1: #60b4ff;          /* Laura   — Azul claro  */
    --c1-bg: rgba(96, 180, 255, 0.08);
    --c1-border: rgba(96, 180, 255, 0.25);

    --c2: #2dd4bf;          /* Alej. B — Teal        */
    --c2-bg: rgba(45, 212, 191, 0.08);
    --c2-border: rgba(45, 212, 191, 0.25);

    --c3: #a78bfa;          /* Alej. G — Violeta     */
    --c3-bg: rgba(167, 139, 250, 0.08);
    --c3-border: rgba(167, 139, 250, 0.25);

    --c4: #e879a0;          /* Denis   — Violeta coral */
    --c4-bg: rgba(232, 121, 160, 0.08);
    --c4-border: rgba(232, 121, 160, 0.25);

    /* Alias de compatibilidad */
    --primary:   var(--c1);
    --secondary: var(--c2);
    --accent:    var(--c3);

    --dark: #080c1e;
    --darker: #04071100;
    --surface: #0d1229;
    --surface-2: #111830;
    --border: rgba(255,255,255,0.07);
    --border-glow: rgba(0, 217, 255, 0.2);
    --text: #eaeaea;
    --text-muted: #7a8094;
    --font-display: 'Oxanium', sans-serif;
    --font-body: 'Jost', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(8, 12, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    padding: 0.6rem 0;
    background: rgba(8, 12, 30, 0.98);
}

.brand-mark {
    width: 32px;
    height: 32px;
    padding: 0;           /* ← importante */
    overflow: hidden;     /* ← importante */
    border-radius: 6px;
    background-color: white;
    border-color: var(--primary);
    margin-right: 12px;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--text);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover { color: var(--text) !important; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: #33e2ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.35);
}

.btn-ghost-custom {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text) !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-ghost-custom:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(0, 217, 255, 0.05);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: var(--dark) !important;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 180, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 180, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tag .dot {
    width: 7px;
    height: 7px;
    background: var(--c1);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -0.02em;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    font-weight: 300;
}

/* Hero visual */
.hero-visual {
    position: relative;
    width: 360px;
    height: 360px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 40% 40%, rgba(96, 180, 255, 0.15), rgba(167, 139, 250, 0.08), transparent 70%);
    animation: float-orb 6s ease-in-out infinite;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1), transparent 70%);
    animation: float-orb 8s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -54%) scale(1.05); }
}

.hero-stats-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 18, 41, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    white-space: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== SECTION COMMON ===== */
.section-pad { padding: 6rem 0; }

.section-dark { background: var(--surface); }

.section-header {
    max-width: 580px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    font-weight: 300;
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* Per-member colour variants */
.team-card.tc1 { border-color: var(--c1-border); }
.team-card.tc1:hover { border-color: var(--c1); box-shadow: 0 20px 40px rgba(96,180,255,0.15); }
.team-card.tc1 .team-role-badge { color: var(--c1); background: var(--c1-bg); border-color: var(--c1-border); }
.team-card.tc1 .team-role { color: var(--c1); }
.team-card.tc1 .team-overlay { background: linear-gradient(to top, rgba(8,12,30,0.95), transparent); }

.team-card.tc2 { border-color: var(--c2-border); }
.team-card.tc2:hover { border-color: var(--c2); box-shadow: 0 20px 40px rgba(45,212,191,0.15); }
.team-card.tc2 .team-role-badge { color: var(--c2); background: var(--c2-bg); border-color: var(--c2-border); }
.team-card.tc2 .team-role { color: var(--c2); }

.team-card.tc3 { border-color: var(--c3-border); }
.team-card.tc3:hover { border-color: var(--c3); box-shadow: 0 20px 40px rgba(167,139,250,0.15); }
.team-card.tc3 .team-role-badge { color: var(--c3); background: var(--c3-bg); border-color: var(--c3-border); }
.team-card.tc3 .team-role { color: var(--c3); }

.team-card.tc4 { border-color: var(--c4-border); }
.team-card.tc4:hover { border-color: var(--c4); box-shadow: 0 20px 40px rgba(232,121,160,0.15); }
.team-card.tc4 .team-role-badge { color: var(--c4); background: var(--c4-bg); border-color: var(--c4-border); }
.team-card.tc4 .team-role { color: var(--c4); }

.team-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(8,12,30,0.9), transparent);
    display: flex;
    align-items: flex-end;
}

.team-role-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
}

.team-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.team-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== STUDIO BLOCKS ===== */
.studio-block {
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.studio-block:hover {
    transform: translateY(-4px);
}

.studio-block-primary {
    background: linear-gradient(135deg, rgba(96, 180, 255, 0.06) 0%, var(--surface-2) 100%);
    border-color: rgba(0, 217, 255, 0.2);
}

.studio-block-secondary {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.06) 0%, var(--surface-2) 100%);
    border-color: rgba(45, 212, 191, 0.2);
}

.studio-block-accent {
    background: linear-gradient(135deg, rgba(127, 57, 251, 0.08) 0%, var(--surface-2) 100%);
    border-color: rgba(127, 57, 251, 0.2);
}

.studio-block-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: -0.03em;
    pointer-events: none;
}

.studio-block-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.studio-block-primary .studio-block-title { color: var(--primary); }
.studio-block-secondary .studio-block-title { color: var(--c2); }
.studio-block-accent .studio-block-title { color: var(--c3); }

.studio-block p {
    font-size: 0.9rem;
    color: #b0b8cc;
    line-height: 1.75;
}

.studio-block strong {
    color: var(--text);
    font-weight: 500;
}

/* ===== PROJECT SECTION ===== */
.body-lead {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.75;
}

.body-lead strong { color: var(--primary); font-weight: 600; }

.strong-purple strong {color: var(--c3); font-weight:600;}

.project-quote {
    background: var(--c2-bg);
    border-left: 3px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    color: #c0c8d8;
    line-height: 1.75;
}

.project-quote strong { color: var(--secondary); font-weight: 600; }

.catchphrase {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.spec-pill {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid;
}

.spec-pill-primary {
    color: var(--primary);
    background: rgba(0, 217, 255, 0.06);
    border-color: rgba(0, 217, 255, 0.2);
}

.spec-pill-secondary {
    color: var(--c2);
    background: var(--c2-bg);
    border-color: var(--c2-border);
}

.spec-pill-accent {
    color: var(--c3);
    background: var(--c3-bg);
    border-color: var(--c3-border);
}

.spec-pill-c4 {
    color: var(--c4);
    background: var(--c4-bg);
    border-color: var(--c4-border);
}

.project-media-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
}

.media-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(127, 57, 251, 0.03));
    color: var(--text-muted);
}

.media-placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

.media-placeholder span {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.features-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.feature-card h6 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-icon { font-size: 1.3rem; }

.feature-card-1 { border-top: 2px solid var(--c1); }
.feature-card-1 .feature-icon { color: var(--c1); }
.feature-card-1 h6 { color: var(--c1); }

.feature-card-2 { border-top: 2px solid var(--c2); }
.feature-card-2 .feature-icon { color: var(--c2); }
.feature-card-2 h6 { color: var(--c2); }

.feature-card-3 { border-top: 2px solid var(--c3); }
.feature-card-3 .feature-icon { color: var(--c3); }
.feature-card-3 h6 { color: var(--c3); }

.feature-card-4 { border-top: 2px solid var(--c4); }
.feature-card-4 .feature-icon { color: var(--c4); }
.feature-card-4 h6 { color: var(--c4); }

/* ===== SERVICES ===== */
.service-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.service-icon-1 {
    background: var(--c1-bg);
    color: var(--c1);
    border: 1px solid var(--c1-border);
}

.service-icon-2 {
    background: var(--c2-bg);
    color: var(--c2);
    border: 1px solid var(--c2-border);
}

.service-icon-3 {
    background: var(--c3-bg);
    color: var(--c3);
    border: 1px solid var(--c3-border);
}

.service-icon-4 {
    background: var(--c4-bg);
    color: var(--c4);
    border: 1px solid var(--c4-border);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.service-card-cta {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.06) 0%, rgba(127, 57, 251, 0.06) 100%);
    border-color: var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-cta-content {
    padding: 1rem 0;
}

.service-cta-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.service-cta-content h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-cta-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== CONTACT ===== */
.contact-block {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-block:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.contact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}

a.contact-value:hover { color: var(--primary); }

.contact-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--c1-bg);
    border-color: var(--c1);
    color: var(--c1);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

.form-label-custom {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.form-input-custom {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
    resize: vertical;
}

.form-input-custom::placeholder { color: rgba(122, 128, 148, 0.6); }

.form-input-custom:focus {
    border-color: var(--c1);
    background: var(--c1-bg);
    box-shadow: 0 0 0 3px rgba(96, 180, 255, 0.12);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(122, 128, 148, 0.5);
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-pad { padding: 4rem 0; }
    .hero-scroll-hint { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .contact-form-wrap { padding: 1.5rem; }
}

.hero-image-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    animation: float-orb 6s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(96, 180, 255, 0.2),
        0 0 80px rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(96, 180, 255, 0.15);
    z-index: 10;
    background-color: rgb(255, 255, 255);
    /* SIN mask-image ni -webkit-mask-image */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* ajusta si la cara queda cortada */
    display: block;
    opacity: 1;
    /* SIN mix-blend-mode */
}

.hero-image-orb {
    z-index: 1;  /* ← por debajo de la stats card */
}

.hero-stats-card {
    z-index: 2;  /* ← siempre encima */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-item {
    background: #101010;
    overflow: hidden;
}

.carousel-item img,
.studio-carousel .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}


.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.28);
}

.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }


.carousel-indicators button {
    width: 8px;
    height: 8px;
    background: var(--c3-border);
    border: 1px solid var(--c3-border);
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-indicators button.active {
    background: var(--c3);
    border-color: var(--c3);
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
    border-radius: 4px;
    opacity: 0.8;
}

