:root {
    --bg: #070b13;
    --bg2: #081428;
    --txt: #eaf1ff;
    --muted: rgba(234, 241, 255, .75);
    --line: rgba(255, 255, 255, .10);
    --blue: #2b6cff;
    --blue2: #66a3ff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--txt);
    background: radial-gradient(1200px 800px at 15% 10%, #0a2a66 0%, #060911 60%, #04060b 100%);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(26px, 5vw, 64px);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.05);
    opacity: .55;
    /* para que el texto se lea */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 20% 20%, rgba(7, 14, 30, .35), rgba(0, 0, 0, .72));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero__title {
    font-size: clamp(48px, 6vw, 88px);
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.hero__subtitle {
    margin: 0 0 18px;
    font-weight: 700;
    color: #78a6ff;
    font-size: clamp(22px, 3vw, 36px);
}

.hero__tagline {
    margin: 0 0 26px;
    color: var(--txt);
    opacity: .92;
    font-size: clamp(16px, 2vw, 20px);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    user-select: none;
}

.btn--primary {
    background: linear-gradient(135deg, #2b6cff, #1a4fd4);
    color: white;
    box-shadow: 0 18px 40px rgba(43, 108, 255, .25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(43, 108, 255, .35);
}

.btn--outline {
    background: rgba(255, 255, 255, .06);
    color: white;
    border-color: rgba(255, 255, 255, .35);
}

.btn--outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .10);
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(34px, 4vw, 54px);
    margin: 0 0 10px;
}

.section-subtitle {
    text-align: center;
    margin: 0 0 34px;
    color: var(--muted);
    line-height: 1.35;
}

/* ================= ANNOUNCEMENTS ================= */
.announcements {
    display: grid;
    gap: 18px;
}

.announcement-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    backdrop-filter: blur(8px);
}

.announcement-img {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .14);
}

.announcement-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
    margin-bottom: 6px;
}

.announcement-title {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.4vw, 34px);
}

.announcement-desc {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.45;
}

.announcement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(43, 108, 255, .9), rgba(26, 79, 212, .9));
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 18px 45px rgba(43, 108, 255, .22);
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 65px rgba(43, 108, 255, .30);
}

/* Responsive card */
@media (max-width: 760px) {
    .announcement-card {
        grid-template-columns: 1fr;
    }

    .announcement-img {
        height: 200px;
    }
}

/* ================= MODAL ================= */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    z-index: 9999;
    animation: fadeIn .18s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal {
    width: min(720px, 96%);
    border-radius: 22px;
    background: rgba(10, 14, 24, .92);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transform: translateY(8px);
    animation: pop .22s ease forwards;
}

@keyframes pop {
    to {
        transform: translateY(0);
    }
}

.modal-header {
    padding: 18px 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.modal-title {
    margin: 0;
    font-size: 26px;
}

.modal-close {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: white;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
}

.modal-body {
    padding: 12px 18px 18px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5;
}

/* ================= SCHEDULE ================= */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

@media (max-width: 780px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.schedule-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 50px rgba(0, 0, 0, .35);
}

.schedule-neon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(102, 163, 255, .55);
    background: rgba(43, 108, 255, .12);
    box-shadow: 0 0 18px rgba(43, 108, 255, .35), 0 0 45px rgba(43, 108, 255, .18);
}

.schedule-neon--kids {
    border-color: rgba(110, 255, 190, .55);
    background: rgba(16, 201, 115, .10);
    box-shadow: 0 0 18px rgba(16, 201, 115, .28), 0 0 45px rgba(16, 201, 115, .15);
}

.schedule-neon--sun {
    border-color: rgba(255, 205, 120, .55);
    background: rgba(255, 170, 40, .10);
    box-shadow: 0 0 18px rgba(255, 170, 40, .22), 0 0 45px rgba(255, 170, 40, .12);
}

.schedule-day {
    font-weight: 900;
    letter-spacing: .2px;
}

.schedule-time {
    font-weight: 900;
    opacity: .95;
}

.schedule-meta {
    margin-top: 12px;
    color: rgba(255, 255, 255, .86);
    font-weight: 650;
}

/* ================= MAP CARDS ================= */
.map-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

@media (max-width: 820px) {
    .map-cards {
        grid-template-columns: 1fr;
    }
}

.map-card {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    position: relative;
    overflow: hidden;
}

.map-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
    background: rgba(255, 255, 255, .07);
}

.map-card--google::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(520px 220px at 20% 50%, rgba(43, 108, 255, .35), transparent 60%);
    pointer-events: none;
}

.map-card--apple::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(520px 220px at 20% 50%, rgba(200, 200, 200, .18), transparent 60%);
    pointer-events: none;
}

.map-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    flex: 0 0 auto;
}

.map-icon svg {
    width: 26px;
    height: 26px;
    fill: rgba(255, 255, 255, .92);
}

.map-icon.google {
    background: linear-gradient(135deg, rgba(43, 108, 255, .95), rgba(26, 79, 212, .85));
    box-shadow: 0 0 18px rgba(43, 108, 255, .35);
}

.map-icon.apple {
    background: linear-gradient(135deg, rgba(190, 190, 190, .40), rgba(255, 255, 255, .12));
    box-shadow: 0 0 18px rgba(255, 255, 255, .12);
}

.map-text {
    position: relative;
    z-index: 1;
}

.map-title {
    font-weight: 900;
    font-size: 18px;
}

.map-sub {
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
}

.map-arrow {
    margin-left: auto;
    font-weight: 900;
    opacity: .8;
    position: relative;
    z-index: 1;
}

/* ================= SOCIAL ================= */
.social-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .16);
    color: white;
    transition: transform .2s ease, box-shadow .2s ease;
}

.social-ico {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
}

.social-ico svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.social-btn--wa {
    background: linear-gradient(135deg, #16c97a, #0aa85f);
    box-shadow: 0 0 18px rgba(22, 201, 122, .25), 0 0 50px rgba(22, 201, 122, .12);
}

.social-btn--ig {
    background: linear-gradient(135deg, #ff2d55, #ff7a00, #8a2be2);
    box-shadow: 0 0 18px rgba(255, 45, 85, .22), 0 0 50px rgba(138, 43, 226, .12);
}

.social-btn:hover {
    transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.footer {
    padding: 24px 12px;
    text-align: center;
    color: rgba(255, 255, 255, .70);
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .25);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {

    .section,
    .btn,
    .map-card,
    .social-btn {
        transition: none !important;
    }
}

/* ===== HORARIOS (DINÁMICO) ===== */
.container {
    width: min(980px, 92%);
    margin: 0 auto;
}

.section-title {
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    text-align: center;
}

.section-sub {
    margin: 0 0 28px;
    text-align: center;
    opacity: .85;
    font-size: 16px;
}

.section-schedule {
    padding: 80px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}

.schedule-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(10px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    overflow: hidden;
}

.schedule-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 200px at 10% 0%, rgba(59, 130, 246, .22), transparent 55%);
    opacity: 0;
    transition: opacity .25s ease;
}

.schedule-card:hover {
    transform: translateY(0px) scale(1.01);
    border-color: rgba(59, 130, 246, .35);
    background: rgba(255, 255, 255, 0.055);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-left {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.schedule-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: .02em;
    background: rgba(59, 130, 246, .16);
    border: 1px solid rgba(59, 130, 246, .30);
    color: #dbeafe;
}

.schedule-badge.kids {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .35);
    color: #dcfce7;
}

.schedule-badge.sun {
    background: rgba(168, 85, 247, .14);
    border-color: rgba(168, 85, 247, .35);
    color: #f3e8ff;
}

.schedule-info h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.schedule-info p {
    margin: 3px 0 0;
    opacity: .85;
    font-size: 14px;
}

.schedule-time {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-card.featured {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 800px) {
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Animación al aparecer ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== NEÓN AZUL para la hora ====== */
.schedule-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: #eaf3ff;
    font-weight: 800;
    letter-spacing: .5px;
    /* “encerrado” con borde neon */
    border: 1px solid rgba(70, 160, 255, .65);
    background: rgba(8, 20, 40, .55);
    /* glow neon */
    box-shadow: 0 0 0 1px rgba(70, 160, 255, .25) inset, 0 0 18px rgba(30, 140, 255, .35), 0 0 40px rgba(30, 140, 255, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* animación suave */
    animation: neonPulse 2.6s ease-in-out infinite;
    transition: transform .18s ease, box-shadow .18s ease;
}

.schedule-card:hover .schedule-time {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(70, 160, 255, .35) inset, 0 0 22px rgba(30, 140, 255, .55), 0 0 60px rgba(30, 140, 255, .22);
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(70, 160, 255, .22) inset, 0 0 16px rgba(30, 140, 255, .32), 0 0 40px rgba(30, 140, 255, .12);
        filter: saturate(1);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(70, 160, 255, .35) inset, 0 0 24px rgba(30, 140, 255, .55), 0 0 70px rgba(30, 140, 255, .20);
        filter: saturate(1.15);
    }
}

/* ===== BOTONES MAPAS CON LOGOS ===== */
.map-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 22px;
    min-width: 260px;
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all .25s ease;
}

/* Texto */
.map-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.map-sub {
    font-size: 13px;
    opacity: .85;
    color: #cfd8ff;
}

/* Flecha */
.map-go {
    margin-left: auto;
    font-size: 18px;
    opacity: .8;
}

/* ICONO */
.map-ic {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GOOGLE */
.map-btn.google {
    background: linear-gradient(135deg, #1a4cff, #0a2ea1);
    box-shadow: 0 0 35px rgba(66, 133, 244, .45);
}

.map-btn.google:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 55px rgba(66, 133, 244, .7);
}

.google-ic {
    background: #fff;
}

/* APPLE */
.map-btn.apple {
    background: linear-gradient(135deg, #2a2a2a, #121212);
    border: 1px solid rgba(255, 255, 255, .2);
}

.map-btn.apple:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 45px rgba(255, 255, 255, .2);
}

.apple-ic {
    background: #f2f2f7;
}

/* MÓVIL */
@media (max-width: 640px) {
    .map-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== SECCIÓN SÍGUENOS (NEÓN + LOGOS) ===== */
.socials {
    padding: 90px 18px;
    position: relative;
}

.socials::before {
    content: "";
    position: absolute;
    inset: -40px 0 -40px 0;
    background: radial-gradient(600px 300px at 50% 20%, rgba(59, 130, 246, .18), transparent 65%), radial-gradient(520px 260px at 20% 70%, rgba(34, 197, 94, .14), transparent 70%), radial-gradient(520px 260px at 80% 70%, rgba(236, 72, 153, .14), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: .5px;
    color: #fff;
    margin: 0 0 10px 0;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, .75);
    margin: 0 auto 34px auto;
    max-width: 720px;
    line-height: 1.5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(20, 24, 34, .55);
    backdrop-filter: blur(12px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(120px 60px at 20% 20%, rgba(255, 255, 255, .25), transparent 60%);
    opacity: .35;
    pointer-events: none;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, .22);
}

.social-ic {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-title {
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}

.social-sub {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.social-go {
    margin-left: auto;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
}

/* WHATSAPP (glow verde) */
.social-btn.whatsapp {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
}

.social-btn.whatsapp:hover {
    box-shadow: 0 0 26px rgba(34, 197, 94, .45), 0 0 60px rgba(34, 197, 94, .25);
}

.social-btn.whatsapp .social-ic {
    background: radial-gradient(circle at 30% 30%, #38f58b, #0ea64b 70%);
    box-shadow: 0 0 22px rgba(34, 197, 94, .55);
}

/* INSTAGRAM (glow multicolor) */
.social-btn.instagram {
    box-shadow: 0 0 0 rgba(236, 72, 153, 0);
}

.social-btn.instagram:hover {
    box-shadow: 0 0 26px rgba(236, 72, 153, .45), 0 0 70px rgba(251, 146, 60, .18);
}

.social-btn.instagram .social-ic {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 0 24px rgba(236, 72, 153, .45), 0 0 55px rgba(59, 130, 246, .18);
}

/* MÓVIL */
@media (max-width: 700px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO UBICACIÓN (NEÓN VERDE WHATSAPP) ===== */

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.hero__actions-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Botón Ubicación */
.btn--wa-neon {
    align-self: center;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    color: #eafff4;

    background: rgba(37, 211, 102, 0.14);
    border: 2px solid rgba(37, 211, 102, 0.85);

    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.25) inset,
        0 0 24px rgba(37, 211, 102, 0.6),
        0 0 80px rgba(37, 211, 102, 0.35);

    position: relative;
    overflow: hidden;

    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn--wa-neon:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.4) inset,
        0 0 36px rgba(37, 211, 102, 1),
        0 0 140px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(37, 211, 102, 0.25) inset,
            0 0 24px rgba(37, 211, 102, 0.6),
            0 0 80px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(37, 211, 102, 0.45) inset,
            0 0 40px rgba(37, 211, 102, 1),
            0 0 160px rgba(37, 211, 102, 0.6);
    }
}

/* ===== HERO ACTIONS: 2 arriba / 1 abajo centrado ===== */
.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero__actions-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BOTÓN UBICACIÓN (neón verde tipo WhatsApp) ===== */
.btn-location {
    align-self: center;
    margin-top: 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 34px;
    border-radius: 999px;

    font-weight: 800;
    font-size: 16px;
    color: #eafff3;
    text-decoration: none;

    background: rgba(18, 90, 55, 0.55);
    border: 2px solid #25D366;

    box-shadow:
        0 0 18px rgba(37, 211, 102, .45),
        0 0 45px rgba(37, 211, 102, .25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform .2s ease, box-shadow .2s ease;
    animation: locationPulse 2.4s ease-in-out infinite;
}

.btn-location:hover {
    transform: translateY(-50px) scale(1.05);
    box-shadow:
        0 0 28px rgba(37, 211, 102, .65),
        0 0 70px rgba(37, 211, 102, .35);
}

@keyframes locationPulse {

    0%,
    100% {
        box-shadow:
            0 0 16px rgba(37, 211, 102, .35),
            0 0 40px rgba(37, 211, 102, .18);
    }

    50% {
        box-shadow:
            0 0 26px rgba(37, 211, 102, .65),
            0 0 80px rgba(37, 211, 102, .35);
    }
}

.btn-location {
    align-self: center;
    margin-top: 6px;

    transform: translateX(-22px);

}

/* ====== NO SUBIR EN HOVER (solo glow + scale suave) ====== */
.btn--primary:hover,
.btn--outline:hover {
    transform: scale(1.02);
}

/* ====== NEÓN ANIMADO AZUL (Ver horarios) ====== */
.btn--primary {
    position: relative;
    box-shadow:
        0 0 0 1px rgba(80, 160, 255, .20) inset,
        0 0 18px rgba(43, 108, 255, .45),
        0 0 55px rgba(43, 108, 255, .20);
    animation: neonBlue 2.8s ease-in-out infinite;
}

@keyframes neonBlue {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(80, 160, 255, .18) inset,
            0 0 16px rgba(43, 108, 255, .38),
            0 0 45px rgba(43, 108, 255, .16);
        filter: saturate(1);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(80, 160, 255, .28) inset,
            0 0 24px rgba(43, 108, 255, .62),
            0 0 75px rgba(43, 108, 255, .24);
        filter: saturate(1.15);
    }
}

/* ====== NEÓN “HIELO” para Contáctanos ====== */
.btn--outline {
    position: relative;
    border-color: rgba(170, 210, 255, .55);
    background: rgba(255, 255, 255, .06);
    box-shadow:
        0 0 0 1px rgba(170, 210, 255, .16) inset,
        0 0 14px rgba(170, 210, 255, .22),
        0 0 40px rgba(170, 210, 255, .12);
    animation: neonIce 3.1s ease-in-out infinite;
}

@keyframes neonIce {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(170, 210, 255, .14) inset,
            0 0 12px rgba(170, 210, 255, .18),
            0 0 34px rgba(170, 210, 255, .10);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(170, 210, 255, .26) inset,
            0 0 20px rgba(170, 210, 255, .32),
            0 0 60px rgba(170, 210, 255, .18);
    }
}

/* ====== NO SUBIR EN HOVER (solo glow + scale suave) ====== */
.btn--primary:hover,
.btn--outline:hover {
    transform: scale(1.02);
}