* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Inter, sans-serif;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    position: relative;
}

#starsCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

body::before {
    content: "";
    position: absolute;
    left: 50%; top: 72%;
    transform: translate(-50%, -50%);
    width: 1400px; height: 550px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(242,135,31,.95) 0%, rgba(242,135,31,.75) 20%, rgba(242,135,31,.45) 40%, rgba(242,135,31,.18) 65%, transparent 100%);
    filter: blur(140px);
    z-index: 4;
}

body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.75) 85%, rgba(0,0,0,1) 100%);
    pointer-events: none;
    z-index: 6;
}

/* =========================
   HEADER
========================= */

.header {
    position: absolute;
    top: 25px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.logo { width: 90px; height: auto; }

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    width: 100%; height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 15;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(242,135,31,.12) 40%, rgba(242,135,31,.25) 70%, rgba(0,0,0,.95) 100%);
    pointer-events: none;
    z-index: 6;
}

.hero-content {
    position: absolute;
    top: 120px; left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    text-align: center;
    z-index: 15;
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 3vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
}

.highlight {
    color: #4EADD1;
    text-shadow: 0 0 10px rgba(78,173,209,.9), 0 0 25px rgba(78,173,209,.8), 0 0 50px rgba(78,173,209,.6);
}

.chavales {
    width: 850px;
    position: relative; bottom: 0;
    filter: drop-shadow(0 0 60px rgba(242,135,31,.35)) contrast(1.05) saturate(1.05);
    z-index: 15;
}

/* =========================
   QUIÉNES SOMOS
========================= */

.about {
    position: relative;
    width: 100%;
    padding: 180px 20px 140px;
    background: #000;
    overflow: visible;
    z-index: 15;
}
.about::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px; height: 500px;
    background: radial-gradient(ellipse, rgba(242,135,31,.35) 0%, rgba(242,135,31,.18) 35%, rgba(242,135,31,.08) 60%, transparent 100%);
    filter: blur(120px);
    pointer-events: none;
}
.about::after {
    content: "";
    position: absolute;
    bottom: -120px; left: 0;
    width: 100%; height: 220px;
    background: linear-gradient(to bottom, transparent, rgba(242,135,31,.10), #000);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    position: relative; z-index: 2;
    max-width: 1300px; margin: auto;
    display: flex; align-items: center;
    gap: 80px; padding: 0 60px;
}
.about-left { flex: 1; max-width: 600px; }

.about-tag {
    display: inline-block;
    color: #F2871F;
    font-size: .85rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(242,135,31,.8);
}

.about h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.1; font-weight: 800;
    margin-bottom: 30px;
}
.about p { color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.9; }

.about-grid {
    flex: 0 0 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}
.about-grid-item {
    border-radius: 18px; overflow: hidden;
    position: relative; aspect-ratio: 1 / 1;
    box-shadow: 0 0 0 2px rgba(242,135,31,.5), 0 0 20px rgba(242,135,31,.15), 0 12px 30px rgba(0,0,0,.6);
    transition: transform .4s ease, box-shadow .4s ease;
}
.about-grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 2px rgba(242,135,31,.9), 0 0 30px rgba(242,135,31,.3), 0 16px 40px rgba(0,0,0,.8);
}
.about-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================
   FLECHA DECORATIVA
========================= */

.section-arrow {
    position: absolute;
    bottom: -110px; left: 60px;
    z-index: 100;
    pointer-events: none;
    width: 130px; height: 170px;
}
.section-arrow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================
   SHOWCASE — Viral Client Profiles
========================= */

.showcase-section {
    position: relative;
    width: 100%;
    padding: 100px 20px 160px;
    background: #000;
    overflow: visible;
    z-index: 20;
    isolation: isolate;
}
.showcase-section::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; height: 500px;
    background: radial-gradient(ellipse, rgba(242,135,31,.22) 0%, rgba(78,173,209,.10) 50%, transparent 100%);
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

.showcase-header {
    position: relative;
    z-index: 20;
    text-align: center;
    margin-bottom: 70px;
}
.showcase-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 14px 0 18px;
}
.showcase-sub {
    color: rgba(255,255,255,.55);
    font-size: 1rem;
    letter-spacing: .3px;
}

.showcase-tag {
    display: inline-block;
    position: relative;
    z-index: 10;
    color: #F2871F;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow:
        0 0 8px rgba(242,135,31,1),
        0 0 20px rgba(242,135,31,.8),
        0 0 40px rgba(242,135,31,.5);
    isolation: isolate;
}

.showcase-grid {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* =========================
   CARDS
========================= */

.showcase-card {
    position: relative;
    width: 300px;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 60px rgba(0,0,0,.7);
    transition: transform .45s cubic-bezier(.23,1,.32,1), box-shadow .45s ease;
}
.showcase-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 0 0 1.5px rgba(242,135,31,.5), 0 0 40px rgba(242,135,31,.2), 0 40px 80px rgba(0,0,0,.9);
}

.sc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transition: transform .6s cubic-bezier(.23,1,.32,1);
    filter: brightness(.85) saturate(1.1);
}
.showcase-card:hover .sc-bg { transform: scale(1.06); }

.showcase-card {
    will-change: opacity, transform;
}

.sc-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
    z-index: 1;
    opacity: .6;
}

.sc-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 35%, rgba(0,0,0,.1) 65%, transparent 100%);
    z-index: 2;
}

.sc-platform {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 5;
    display: flex; align-items: center; gap: 5px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 5px 10px 5px 8px;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.sc-platform-ig { background: rgba(200,60,120,.35); border-color: rgba(200,60,120,.4); }

.sc-stat {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 5;
    display: flex; flex-direction: column; align-items: flex-start;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(242,135,31,.3);
    border-radius: 14px;
    padding: 7px 12px;
}
.sc-stat-num {
    color: #F2871F;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 12px rgba(242,135,31,.6);
}
.sc-stat-label {
    color: rgba(255,255,255,.55);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.sc-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .3s ease, transform .3s ease;
    padding-left: 3px;
}
.sc-play-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(242,135,31,.4);
    animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.12); opacity: 1; }
}
.showcase-card:hover .sc-play {
    background: rgba(242,135,31,.8);
    border-color: #F2871F;
    transform: translate(-50%, -50%) scale(1.1);
}

.sc-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 5;
    padding: 20px 18px 22px;
    display: flex; align-items: center; gap: 12px;
}
.sc-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F2871F, #4EADD1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .72rem; font-weight: 800; letter-spacing: .5px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.2);
}
.sc-text { display: flex; flex-direction: column; gap: 3px; }
.sc-name { color: #fff; font-size: .95rem; font-weight: 800; line-height: 1.1; }
.sc-biz { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 500; letter-spacing: .3px; }

.sc-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(0,0,0,.0);
    color: #fff;
    font-size: .9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    opacity: 0;
    transition: opacity .3s ease, background .3s ease;
    border-radius: 28px;
}
.showcase-card:hover .sc-hover-overlay { opacity: 1; background: rgba(0,0,0,.18); }

/* =========================
   MODAL SHOWCASE
========================= */

.sm-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.sm-modal.open { opacity: 1; visibility: visible; }

.sm-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(16px);
}

.sm-inner {
    position: relative;
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 28px;
    transform: translateY(20px) scale(.96);
    transition: transform .45s cubic-bezier(.23,1,.32,1);
}
.sm-modal.open .sm-inner { transform: translateY(0) scale(1); }

.sm-close {
    position: absolute;
    top: -14px; right: -14px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(20,20,20,.9);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 10;
    backdrop-filter: blur(8px);
}
.sm-close:hover { background: rgba(242,135,31,.3); border-color: rgba(242,135,31,.6); }

.sm-phone {
    position: relative;
    width: 300px; height: 530px;
    border-radius: 36px;
    overflow: hidden;
    background: #0a0a0a;
    border: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 40px 100px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.06);
}

.sm-phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 8px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    z-index: 10;
}

.sm-video-wrap {
    position: absolute; inset: 0; z-index: 1;
}
.sm-video-wrap iframe,
.sm-video-wrap video { width: 100%; height: 100%; object-fit: cover; border: none; }

.sm-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
    color: rgba(255,255,255,.3);
    font-size: .85rem; letter-spacing: .5px; text-align: center; padding: 30px;
}
.sm-placeholder-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(242,135,31,.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(242,135,31,.5);
    margin-bottom: 4px;
}
.sm-placeholder strong { color: rgba(255,255,255,.6); font-size: 1rem; font-weight: 700; display: block; margin-bottom: 6px; }

.sm-external-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #F2871F, #e07010);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
    box-shadow: 0 4px 18px rgba(242,135,31,.4);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sm-external-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242,135,31,.55);
}
.sm-external-btn svg { flex-shrink: 0; }

.sm-ui {
    position: absolute; inset: 0; z-index: 4;
    pointer-events: none;
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 0 14px 28px;
}
.sm-ui-left { display: flex; flex-direction: column; gap: 6px; max-width: 200px; }
.sm-ui-username { color: #fff; font-size: .88rem; font-weight: 800; }
.sm-ui-desc { color: rgba(255,255,255,.8); font-size: .75rem; line-height: 1.5; }
.sm-ui-tag { color: #4EADD1; font-size: .75rem; font-weight: 600; }

.sm-ui-right {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    pointer-events: all;
}
.sm-ui-action {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: #fff; font-size: .65rem; font-weight: 600; letter-spacing: .3px; cursor: pointer; opacity: .9;
}

.sm-stats { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.sm-stat-pill {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 40px;
    padding: 8px 16px;
    color: rgba(255,255,255,.7);
    font-size: .8rem; font-weight: 600;
    backdrop-filter: blur(8px);
}
.sm-stat-pill strong { color: #F2871F; font-size: .95rem; font-weight: 900; }

/* =========================
   CARRUSEL
========================= */

.results-carousel-section {
    position: relative; padding: 120px 0 100px;
    background: #000; overflow: hidden; z-index: 15;
}
.results-carousel-section::before {
    content: "";
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 1100px; height: 450px;
    background: radial-gradient(ellipse, rgba(242,135,31,.38) 0%, rgba(242,135,31,.20) 30%, rgba(78,173,209,.10) 60%, transparent 100%);
    filter: blur(90px); pointer-events: none;
}
.results-carousel-header { position: relative; z-index: 2; text-align: center; margin-bottom: 60px; padding: 0 20px; }
.results-carousel-header h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-top: 10px; }
.results-carousel { position: relative; width: 100%; overflow: hidden; z-index: 2; }
.results-carousel::before, .results-carousel::after { content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 3; pointer-events: none; }
.results-carousel::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.results-carousel::after { right: 0; background: linear-gradient(to left, #000, transparent); }
.results-track { display: flex; gap: 24px; width: max-content; animation: resultsScroll 35s linear infinite; padding: 20px 0 30px; }
.results-track:hover { animation-play-state: paused; }
.result-slide { width: 280px; height: 380px; border-radius: 20px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(242,135,31,.5), 0 0 20px rgba(242,135,31,.2), 0 20px 50px rgba(0,0,0,.8); transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s ease; cursor: pointer; }
.result-slide:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 0 0 2px rgba(242,135,31,.9), 0 0 30px rgba(242,135,31,.4), 0 30px 60px rgba(0,0,0,.9); }
.result-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.result-slide:hover img { transform: scale(1.06); }
@keyframes resultsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.carousel-controls { display: flex; justify-content: center; gap: 20px; margin-top: 40px; position: relative; z-index: 4; }
.carousel-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(242,135,31,.5); background: rgba(0,0,0,.6); color: #F2871F; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s ease; backdrop-filter: blur(8px); }
.carousel-btn:hover { background: rgba(242,135,31,.2); border-color: rgba(242,135,31,.9); box-shadow: 0 0 20px rgba(242,135,31,.3); transform: scale(1.1); }

/* =========================
   CONTADORES
========================= */

.counters-section { position: relative; padding: 100px 20px; background: #000; overflow: hidden; z-index: 15; }
.counters-section::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 1000px; height: 400px; background: radial-gradient(ellipse, rgba(78,173,209,.12) 0%, rgba(242,135,31,.08) 50%, transparent 100%); filter: blur(100px); pointer-events: none; }
.counters-section::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 1px; background: linear-gradient(to right, transparent, rgba(78,173,209,.4), rgba(242,135,31,.4), transparent); }
.counters-container { position: relative; z-index: 2; max-width: 900px; margin: auto; display: flex; align-items: center; justify-content: center; }
.counter-item { flex: 1; text-align: center; padding: 40px 30px; }
.counter-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.counter-number { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; margin-bottom: 14px; background: linear-gradient(135deg, #F2871F 0%, #4EADD1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-label { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.6; font-weight: 500; }
.counter-divider { width: 1px; height: 100px; background: linear-gradient(to bottom, transparent, rgba(78,173,209,.4), rgba(242,135,31,.3), transparent); flex-shrink: 0; }

/* =========================
   BOOKING
========================= */

.booking-section { position: relative; padding: 120px 20px 140px; background: #000; overflow: hidden; z-index: 15; text-align: center; }
.booking-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(242,135,31,.25) 0%, rgba(78,173,209,.12) 40%, transparent 100%); filter: blur(120px); pointer-events: none; }
.booking-section::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 1px; background: linear-gradient(to right, transparent, rgba(242,135,31,.5), rgba(78,173,209,.4), transparent); }
.booking-container { position: relative; z-index: 2; max-width: 700px; margin: auto; }
.booking-container h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 800; line-height: 1.1; margin: 20px 0 24px; }
.booking-subtitle { color: rgba(255,255,255,.65); font-size: 1.15rem; line-height: 1.8; margin-bottom: 48px; max-width: 540px; margin-left: auto; margin-right: auto; }
.booking-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; border-radius: 50px; background: linear-gradient(135deg, #F2871F 0%, #e07010 100%); color: #fff; font-size: 1.05rem; font-weight: 700; text-decoration: none; letter-spacing: .5px; box-shadow: 0 8px 30px rgba(242,135,31,.4), 0 20px 60px rgba(242,135,31,.2); transition: all .35s cubic-bezier(.23,1,.32,1); position: relative; overflow: hidden; }
.booking-btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%); border-radius: 50px; }
.booking-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 0 0 3px rgba(242,135,31,.3), 0 16px 40px rgba(242,135,31,.5), 0 30px 80px rgba(242,135,31,.25); }
.booking-note { margin-top: 24px; color: rgba(255,255,255,.4); font-size: .9rem; letter-spacing: .5px; }
.booking-btn-blue { background: linear-gradient(135deg, #4EADD1 0%, #3a90b0 100%); box-shadow: 0 8px 30px rgba(78,173,209,.4), 0 20px 60px rgba(78,173,209,.2); }
.booking-btn-blue:hover { box-shadow: 0 0 0 3px rgba(78,173,209,.3), 0 16px 40px rgba(78,173,209,.5), 0 30px 80px rgba(78,173,209,.25); }

/* =========================
   FOOTER
========================= */

.footer { position: relative; background: #000; overflow: hidden; z-index: 15; border-top: 1px solid rgba(255,255,255,.06); }
.footer-glow { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 800px; height: 300px; background: radial-gradient(ellipse at bottom, rgba(78,173,209,.08) 0%, rgba(242,135,31,.06) 40%, transparent 100%); filter: blur(80px); pointer-events: none; }
.footer-container { position: relative; z-index: 2; max-width: 1200px; margin: auto; padding: 80px 40px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; margin-top: 20px; max-width: 320px; }
.footer-logo { width: 80px; height: auto; }
.footer-socials { display: flex; gap: 14px; margin-top: 28px; }
.social-link { width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .3s ease; }
.social-link:hover { border-color: rgba(78,173,209,.5); background: rgba(78,173,209,.1); color: #4EADD1; box-shadow: 0 0 20px rgba(78,173,209,.2); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: #F2871F; font-size: .9rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .95rem; transition: color .2s ease; }
.footer-links ul li a:hover { color: #4EADD1; }
.footer-contact ul li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: .95rem; }
.footer-contact ul li svg { color: #F2871F; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s ease; }
.footer-contact ul li a:hover { color: #4EADD1; }
.footer-bottom { position: relative; z-index: 2; max-width: 1200px; margin: auto; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .85rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.3); font-size: .85rem; text-decoration: none; transition: color .2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-title-blue { color: #F2871F !important; text-shadow: 0 0 10px rgba(242,135,31,.5); }

/* =========================
   PAGE LOADER
========================= */

#pageLoader { position: fixed; inset: 0; background: #000; display: flex; align-items: center; justify-content: center; z-index: 999999; transition: opacity 0.6s ease, visibility 0.6s ease; }
#pageLoader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap { perspective: 800px; animation: logoFlip 1.4s ease-in-out infinite; }
.loader-logo { width: 120px; height: auto; display: block; filter: drop-shadow(0 0 20px rgba(78,173,209,0.75)) drop-shadow(0 0 45px rgba(242,135,31,0.5)); }
@keyframes logoFlip { 0% { transform: rotateY(0deg) scale(1); } 35% { transform: rotateY(180deg) scale(1.1); } 50% { transform: rotateY(180deg) scale(1.1); } 85% { transform: rotateY(360deg) scale(1); } 100% { transform: rotateY(360deg) scale(1); } }

/* =========================
   FLECHAS HERO
========================= */

.hero-arrows {
    position: absolute;
    bottom: 36%; left: 50%;
    transform: translateX(-50%);
    width: min(680px, 80vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 20;
}
.arrow-wrap { position: relative; width: 110px; height: 70px; flex-shrink: 0; }
.arrow-svg { width: 100%; height: 100%; opacity: 0; animation: arrowFadeIn .1s ease forwards; animation-delay: 1.7s; }
.arrow-path { stroke-dasharray: 160; stroke-dashoffset: 160; animation: drawPath 0.85s cubic-bezier(.4,0,.2,1) forwards; animation-delay: 1.75s; }
.arrow-head { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawPath 0.3s ease forwards; animation-delay: 2.5s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes arrowFadeIn { to { opacity: 1; } }
.arrow-name {
    position: absolute;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    animation: nameFadeUp 0.45s ease forwards;
}
.name-juan { top: -22px; left: -25px; animation-delay: 2.7s; }
.name-marco { top: -22px; right: -25px; animation-delay: 2.85s; }
@keyframes nameFadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================
   SCROLL REVEAL
========================= */

.scroll-reveal { transition: opacity 0.7s cubic-bezier(.23,1,.32,1), transform 0.7s cubic-bezier(.23,1,.32,1); will-change: opacity, transform; }
.hidden-down { opacity: 0; transform: translateY(36px); }
.revealed { opacity: 1; transform: translateY(0); }
.hero-arrows.scroll-reveal { transition: opacity 0.6s cubic-bezier(.23,1,.32,1); }
.hero-arrows.hidden-down { opacity: 0; transform: translateX(-50%); }
.hero-arrows.revealed { opacity: 1; transform: translateX(-50%); }
.hero-content h1.scroll-reveal { transition-delay: 0s; }
.hero-arrows.scroll-reveal { transition-delay: 0.18s; }
.chavales.scroll-reveal { transition-delay: 0.08s; }
.about-left.scroll-reveal { transition-delay: 0s; }
.about-grid.scroll-reveal { transition-delay: 0.15s; }
.results-carousel-header.scroll-reveal { transition-delay: 0s; }
.counters-container.scroll-reveal { transition-delay: 0s; }
.booking-container.scroll-reveal { transition-delay: 0s; }
.hero-arrows.hidden-down .arrow-path, .hero-arrows.hidden-down .arrow-head, .hero-arrows.hidden-down .arrow-name { animation: none; stroke-dashoffset: 160; opacity: 0; }
.hero-arrows.revealed .arrow-svg { opacity: 1; }
.hero-arrows.revealed .arrow-path { animation: drawPath 0.85s 0.1s cubic-bezier(.4,0,.2,1) forwards; }
.hero-arrows.revealed .arrow-head { animation: drawPath 0.3s 0.85s ease forwards; }
.hero-arrows.revealed .arrow-name { animation: nameFadeUp 0.45s 1s ease forwards; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .chavales { width: 650px; }
}

@media (max-width: 900px) {
    .hero-arrows { bottom: 34%; width: 86vw; }
    .arrow-wrap { width: 90px; height: 58px; }
    .about-container { flex-direction: column; gap: 50px; padding: 0 20px; }
    .about-left { max-width: 100%; }
    .about-grid { flex: 0 0 auto; width: 100%; max-width: 420px; }
    .counters-container { flex-direction: column; }
    .counter-divider { width: 120px; height: 1px; background: linear-gradient(to right, transparent, rgba(78,173,209,.4), rgba(242,135,31,.3), transparent); }
    .showcase-grid { gap: 20px; }
    .showcase-card { width: 260px; height: 420px; }
}

@media (max-width: 600px) {
    html, body { overflow-x: hidden !important; max-width: 100vw; overscroll-behavior-x: none; touch-action: pan-y; }
    .hero { height: 100svh; }
    .hero-content { top: 165px; width: 92vw; }
    .hero-content h1 { font-size: clamp(1.55rem, 6.5vw, 2.2rem); line-height: 1.15; }
    .chavales { width: 100%; max-width: 100vw; }

    /* ── Nombres sobre las cabezas en móvil ── */
    .hero-arrows {
        bottom: 30%;
        width: 87vw;
        align-items: flex-start;
    }
    .arrow-wrap {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .arrow-wrap .arrow-svg { display: none; }
    .name-juan {
        position: static;
        display: block;
        font-size: clamp(.9rem, 4.5vw, 1.15rem);
        opacity: 1;
        transform: none;
        animation: none;
        text-align: left;
        text-shadow: 0 0 14px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,.9);
    }
    .name-marco {
        position: static;
        display: block;
        font-size: clamp(.9rem, 4.5vw, 1.15rem);
        opacity: 1;
        transform: none;
        animation: none;
        text-align: right;
        text-shadow: 0 0 14px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,.9);
    }

    /* ── Showcase cards en columna ── */
    .showcase-section { padding: 70px 16px 120px; }
    .showcase-header h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .showcase-grid {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 20px;
        padding: 10px 0 20px;
        margin: 0;
    }
    .showcase-card {
        width: min(340px, 88vw);
        height: 400px;
        flex-shrink: 0;
    }

    .sm-phone { width: 260px; height: 460px; }
    .sm-inner { gap: 18px; }
    .sm-stats { gap: 10px; }
    .sm-stat-pill { padding: 6px 12px; font-size: .75rem; }
    .results-carousel-section { padding: 80px 0 70px; }
    .results-carousel-header { margin-bottom: 40px; }
    .results-carousel-header h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .result-slide { width: 200px; height: 270px; border-radius: 14px; }
    .results-track { gap: 16px; }
    .carousel-btn { width: 44px; height: 44px; font-size: 1rem; }
    .counters-section { padding: 70px 16px; }
    .counter-item { padding: 30px 16px; }
    .counter-icon { font-size: 1.6rem; }
    .counter-label { font-size: .85rem; }
    .booking-section { padding: 80px 16px 100px; }
    .booking-container h2 { font-size: clamp(1.9rem, 7vw, 3rem); }
    .booking-subtitle { font-size: 1rem; margin-bottom: 36px; }
    .booking-btn { padding: 16px 28px; font-size: .95rem; width: 100%; justify-content: center; max-width: 360px; }
    .footer-container { grid-template-columns: 1fr; padding: 60px 24px 40px; gap: 40px; }
    .footer-brand { grid-column: 1; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 12px; }
    .footer-legal { gap: 16px; }
    .social-link { width: 46px; height: 46px; }
    .loader-logo { width: 90px; }
}

@media (max-width: 380px) {
    .hero-content h1 { font-size: 1.4rem; }
    .hero-arrows { bottom: 28%; }
    .booking-btn { padding: 15px 20px; font-size: .88rem; }
    .loader-logo { width: 75px; }
    .showcase-card { width: 92vw; height: 380px; }
}