:root {
    --purple: #B14EFF;
    --purple-deep: #5A189A;
    --pink: #FF2D95;
    --pink-soft: #FF6FD8;
    --black: #0D0B1A;
    --white: #FFFFFF;
    --lila: #EDE7FF;
    --grad: linear-gradient(135deg, #B14EFF 0%, #FF2D95 100%);
    --grad-tri: linear-gradient(135deg, #5A189A 0%, #B14EFF 45%, #FF2D95 100%);
    --fd: 'Poppins', system-ui, sans-serif;
    --fb: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--fb);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 26px
}

h1, h2, h3 {
    font-family: var(--fd);
    line-height: 1.08;
    letter-spacing: -.01em
}

.eyebrow {
    font-family: var(--fd);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: 12px;
    color: var(--pink-soft)
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

section {
    padding: 84px 0
}

/* placeholder system */
.ph {
    position: relative;
    overflow: hidden;
    background: var(--grad-tri);
    display: flex;
    align-items: center;
    justify-content: center
}

.ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0
}

.ph.empty::after {
    content: attr(data-name);
    font-family: var(--fd);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    text-align: center;
    padding: 10px;
    z-index: 1
}

.ph.empty::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 14px, transparent 14px 28px);
    z-index: 0
}

/* hero: sin etiqueta/rayas de placeholder, solo fondo neón oscuro */
.hero .bg.ph::before, .hero .bg.ph::after {
    content: none !important;
    display: none !important
}

.hero .bg.ph {
    background: radial-gradient(130% 100% at 50% 0%, #2a0f3f 0%, #160a26 45%, #0D0B1A 75%)
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(13, 11, 26, .66);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px
}

nav .brand {
    height: 34px
}

nav .links {
    display: flex;
    gap: 26px;
    align-items: center
}

nav .links a {
    font-family: var(--fd);
    font-weight: 600;
    font-size: 14px;
    color: #d8d2e6
}

nav .links a:hover {
    color: var(--pink-soft)
}

nav .nav-cta {
    background: var(--grad);
    color: #1a0420;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px
}

.burger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer
}

@media (max-width: 780px) {
    nav .links {
        display: none
    }

    .burger {
        display: block
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 90px
}

.hero .bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero .scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 11, 26, .55) 0%, rgba(13, 11, 26, .78) 60%, var(--black) 100%)
}

.hero .inner {
    position: relative;
    z-index: 2;
    max-width: 760px
}

.hero .logo {
    width: min(420px, 76%);
    filter: drop-shadow(0 14px 50px rgba(255, 45, 149, .5))
}

.hero h1 {
    font-size: clamp(34px, 6.5vw, 68px);
    font-weight: 900;
    margin-top: 22px
}

.hero p {
    margin-top: 16px;
    color: #e7e2f2;
    font-size: clamp(16px, 2.2vw, 20px)
}

.cta-row {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}

.btn {
    font-family: var(--fd);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 15px;
    display: inline-block;
    transition: transform .15s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--grad);
    color: #190420;
    box-shadow: 0 10px 34px rgba(255, 45, 149, .45)
}

.btn-ghost {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    border: 1.5px solid var(--purple)
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #cdbff0;
    font-family: var(--fd);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .8
}

/* INTRO */
.intro {
    text-align: center
}

.intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    max-width: 760px;
    margin: 14px auto 0
}

.intro p {
    color: #c3bdd3;
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 17px
}

.stats {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px
}

.stat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    padding: 24px 30px;
    min-width: 160px
}

.stat b {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 30px;
    display: block
}

.stat span {
    color: #a79fbe;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase
}

/* PLAZAS */
.plazas-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 26px;
    margin-top: 42px
}

@media (max-width: 780px) {
    .plazas-grid {
        grid-template-columns:1fr
    }
}

.plaza {
    border-radius: 22px;
    overflow: hidden;
    background: #15112a;
    border: 1px solid rgba(255, 255, 255, .09)
}

.plaza .photo {
    height: 240px
}

.plaza .body {
    padding: 26px
}

.plaza h3 {
    font-size: 24px;
    font-weight: 800
}

.plaza .grad-text {
    font-size: 24px
}

.plaza .row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 12px;
    color: #cfc9dd;
    font-size: 14.5px
}

.plaza .row .ic {
    color: var(--pink-soft);
    font-size: 16px;
    line-height: 1.4
}

.plaza .socials {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.plaza .socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    color: #e7e2f2
}

.plaza .socials a:hover {
    background: var(--grad);
    color: #1a0420;
    border: none
}

.plaza .socials a svg {
    width: 20px;
    height: 20px;
    display: block
}

/* GALERIA */
.gallery {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 14px;
    margin-top: 42px
}

.gallery .ph {
    border-radius: 16px
}

@media (max-width: 780px) {
    .gallery {
        grid-template-columns:repeat(2, 1fr);
        grid-auto-rows: 170px
    }
}

/* EVENTOS */
.events {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 42px
}

.ev {
    border-radius: 18px;
    padding: 26px;
    background: #0a0813;
    border: 1px solid rgba(177, 78, 255, .4);
    box-shadow: 0 0 36px rgba(177, 78, 255, .16)
}

.ev .day {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--pink-soft)
}

.ev h3 {
    font-size: 21px;
    font-weight: 800;
    margin: 8px 0 6px
}

.ev p {
    color: #b6afc9;
    font-size: 14px
}

/* RESERVA */
.reserva {
    background: var(--grad-tri);
    border-radius: 26px;
    padding: 54px 40px;
    text-align: center;
    margin-top: 20px
}

.reserva h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900
}

.reserva p {
    color: #f3e9ff;
    margin: 14px auto 0;
    max-width: 520px
}

.reserva .btn-primary {
    margin-top: 28px;
    background: #0d0b1a;
    color: #fff
}

.reserva .btn-primary:hover {
    background: #000
}

/* FOOTER */
footer {
    padding: 60px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center
}

footer .logo {
    width: 180px;
    margin-bottom: 18px;
    opacity: .95
}

footer .fl {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-family: var(--fd);
    font-weight: 600;
    font-size: 14px;
    color: #cfc9dd
}

footer small {
    color: #7d768f;
    font-size: 13px;
    display: block;
    margin-top: 8px
}

.pride {
    height: 4px;
    width: 120px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787)
}