@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all ease-in 0.3s;
}


header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;

    /*  background: #68974f;*/
    backdrop-filter: blur(8px);
}


.nav {
    display: flex;
    align-items: center;
    color: var(--texto-nav);
    justify-content: space-between;
    gap: 1rem;
}

.brand h1 {
    font-size: 1.3rem;
    letter-spacing: -.5px;
}

.brand {
    text-decoration: none;
}

.navlinks {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: color .2s;
}

.nav-item:hover {
    color: var(--verde);
}

#menu-hamburger {
    display: none;
}

#menu-hamburger button {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
}

.navlinksMobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--pink);
    padding: .75rem 1.25rem;
    gap: .75rem;
    position: fixed;
    top: -300px;
    z-index: 2000;

}

.navlinksMobile.open {
    top: 76px;
}

@media (max-width: 1180px) {
    .heroGrid {
        grid-template-columns: 1fr;
    }

    .infoCard {
        display: none;
    }

    .navlinks {
        display: none;
    }

    #menu-hamburger {
        display: block;
    }

    .ctaBox {
        flex-direction: column;
        text-align: center;
    }

    .sena-box {
        margin: 1.5rem 1rem 0;
    }

    .videos-grid .slide {
        width: 100%;
    }
}
:root {
    --bg: #120e1a;
    --bg-soft: #1c1428;
    --panel: #241b33;
    --panel-2: #2c2140;
    --pink: #ff3d7f;
    --cyan: #4ef2c7;
    --gold: #ffd166;
    --texto: #f5f1f8;
    --texto-suave: #b8afc6;
    --blanco: #ffffff;
    --sombra: 0 10px 40px rgba(0, 0, 0, .45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--texto);
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    letter-spacing: -.5px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 0 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 61, 127, .28), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(78, 242, 199, .22), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 209, 102, .12), transparent 55%),
        var(--bg);
}

.heroGlow {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.heroGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0;
}

.heroText .badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--panel);
    border: 1px solid rgba(255, 61, 127, .35);
    color: var(--pink);
    font-family: 'Space Mono', monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    display: inline-block;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

.heroText h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1rem;
}

.heroSub {
    color: var(--texto-suave);
    max-width: 460px;
    font-size: 1.05rem;
}

.heroActions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, background .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 61, 127, .35);
}

.btn.primary {
    background: linear-gradient(135deg, var(--pink), #ff6f9c);
    color: #fff;
}

.btn.secondary {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.btn.dark {
    background: var(--cyan);
    color: #0b1410;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

/* ── FRAME / PLACEHOLDER DE FOTO EN HERO ── */
.heroFrame {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 380px;
    margin-left: auto;
}

.frameCorner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid var(--cyan);
    z-index: 3;
}

.frameCorner.tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.frameCorner.tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.frameCorner.bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.frameCorner.br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.liveTag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: 1px;
    padding: .35rem .7rem .35rem .55rem;
    border-radius: 50px;
}

/* ── PLACEHOLDERS DE IMAGEN (reemplazar por fotos reales) ── */
.photoPlaceholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: var(--sombra);
}

.ph-1 {
    background: linear-gradient(155deg, var(--pink), #7b2fd1);
}

.ph-2 {
    background: linear-gradient(155deg, var(--cyan), #1f7a8c);
}

.ph-3 {
    background: linear-gradient(155deg, var(--gold), #d1495b);
}

.ph-4 {
    background: linear-gradient(155deg, #7b2fd1, var(--cyan));
}

.slide-photo {
    aspect-ratio: 1/1;
    border-radius: 16px 16px 0 0;
}

/* ── GIFT TICKER (elemento firma) ── */
.giftTicker {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: var(--bg-soft);
    overflow: hidden;
    padding: .85rem 0;
}

.tickerTrack {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollTicker 22s linear infinite;
    font-family: 'Space Mono', monospace;
    font-size: .78rem;
    color: var(--texto-suave);
    white-space: nowrap;
}

@keyframes scrollTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECCIONES GENERALES ── */
section {
    padding: 5rem 0;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 3rem;
}

.sectionTitle h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: .5rem;
}

.sectionTitle span {
    font-size: .9rem;
    color: var(--texto-suave);
    font-family: 'Space Mono', monospace;
}

#detalles {
    background: var(--bg);
}

.abordaje {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.pillar-card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 1.75rem;
}

.pillar-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sq-pink {
    background: var(--pink);
}

.sq-cyan {
    background: var(--cyan);
}

.sq-gold {
    background: var(--gold);
}

.pillar-card h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: .5rem;
}

.pillar-card p {
    font-size: .88rem;
    color: var(--texto-suave);
}

.sena-box {
    background: var(--panel-2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--sombra);
    max-width: 680px;
    margin: 3rem auto 0;
    border-left: 4px solid var(--cyan);
}

.sena-box h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: .75rem;
}

.sena-box p {
    font-size: .9rem;
    color: var(--texto-suave);
    margin-bottom: .5rem;
}

/* ── CARRUSEL ── */
#fotos {
    background: var(--bg-soft);
}

.carousel {
    position: relative;
    overflow: hidden;
}

.track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .5rem 2.5rem 1.25rem;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--bg-soft);
}

.slide {
    flex: 0 0 300px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra);
    background-color: var(--panel);
}

.slide:hover {
    transform: scale(1.04);
}

.descr-slide {
    padding: 1rem 1.1rem 1.25rem;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.descr-slide h1 {
    color: var(--cyan);
    font-size: 2.5rem;
}

.descr-slide b {
    color: #fff;
}

.descr-slide p {
    line-height: 1.4;
    font-size: 9pt;
    color: var(--texto-suave);
}

.chip {
    background: rgba(78, 242, 199, .12);
    color: var(--cyan);
    font-family: 'Space Mono', monospace;
    font-size: .68rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 50px;
    white-space: nowrap;
    margin-top: .75rem;
}

/* ── REDES ── */
.redesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.redCard {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    color: var(--texto);
}

.redCard:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
}

.redIcon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #12101a;
    flex-shrink: 0;
}

.redCard b {
    display: block;
    font-size: .95rem;
    color: #fff;
}

.redCard small {
    color: var(--texto-suave);
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
}

/* ── CARDS / CTA ── */
#contacto {
    background: var(--bg);
}

.card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 1.5rem;
}

.ctaBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.ctaBox h4 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: .5rem;
}

.ctaBox p {
    color: var(--texto-suave);
    max-width: 480px;
}

.ctaBtns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* ── FORMULARIO ── */
#contacto-form input,
#contacto-form textarea {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: var(--texto);
}

#contacto-form label {
    color: var(--texto-suave);
}

/* ── HORARIOS / EN VIVO ── */
#ubicacion {
    background: var(--bg-soft);
}

#ubicacion .container {
    text-align: center;
}

.scheduleGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.scheduleCard {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.scheduleCard.active {
    border-color: var(--pink);
    background: linear-gradient(160deg, rgba(255, 61, 127, .18), var(--panel));
}

.schDay {
    font-family: 'Space Mono', monospace;
    font-size: .72rem;
    letter-spacing: 1px;
    color: var(--texto-suave);
}

.schTime {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.videoPlaceholder {
    max-width: 640px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    letter-spacing: 1px;
    box-shadow: var(--sombra);
}

footer {
    background: #0b0811;
    color: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 1.5rem 0;
    font-size: .82rem;
}

footer a {
    color: var(--cyan);
    text-decoration: none;
}

#whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 61, 127, .5);
    cursor: pointer;
    text-decoration: none;
}

#whatsapp:hover {
    transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .heroGrid {
        grid-template-columns: 1fr;
    }

    .heroFrame {
        margin: 0 auto;
        max-width: 260px;
    }

    .abordaje {
        grid-template-columns: 1fr;
    }

    .ctaBox {
        flex-direction: column;
        text-align: center;
    }

    .scheduleGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sena-box {
        margin: 2rem 1rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dot,
    .tickerTrack {
        animation: none !important;
    }
}