/* ============================================================
   QUELLON SPORT — Shared Styles
   ============================================================ */

/* ── Variables ── */
:root {
    --bg-color: #0d0d0d;
    --accent-color: #fa0505;
    --text-color: #ffffff;
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Roboto Condensed', sans-serif;
    --container-w: 90%;
    --container-max: 1400px;
    --nav-h: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-title);
    text-transform: uppercase;
}

/* ── Container ── */
.container {
    width: var(--container-w);
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(13, 13, 13, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.logo span { color: var(--accent-color); }

/* Nav links row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > a,
.nav-links .dropdown > a {
    color: var(--text-color);
    font-family: var(--font-title);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.2s;
}

.nav-links > a::after,
.nav-links .dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links > a:hover::after,
.nav-links .dropdown > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links > a.active,
.nav-links .dropdown > a.active { color: var(--accent-color); }

.nav-links > a.active::after,
.nav-links .dropdown > a.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 5, 5, 0.3);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-title);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ccc;
    transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(250, 5, 5, 0.12);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(250, 5, 5, 0.3);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Invisible bridge: keeps :hover alive across the gap between toggle and menu,
   so the submenu links stay reachable (fixes "no se puede hacer clic"). */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WhatsApp Float ── */
.wp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2.5s infinite;
    transition: transform 0.3s ease;
}

.wp-float:hover { transform: scale(1.1); }

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Panel / Section Base ── */
.panel {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.panel.hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--nav-h);
}

/* Gradient overlays */
.panel-gradient-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 160px;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
    z-index: 1;
    pointer-events: none;
}

.panel-gradient-bottom {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 160px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Parallax background text */
.bg-text-stroke {
    position: absolute;
    font-family: var(--font-title);
    font-size: 15vw;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
}

/* ── Typography ── */
.title-huge {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.5;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }
.section-header.centered .subtitle { margin-left: auto; margin-right: auto; }

.text-red { color: var(--accent-color); }
.text-muted { color: #888; }

/* ── Buttons ── */
.btn-wrapper { display: inline-block; padding: 20px; }

.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background-color: transparent;
    color: var(--text-color);
    font-family: var(--font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover { color: var(--bg-color); font-weight: bold; }
.btn:hover::before { transform: scaleX(1); }

.btn.solid {
    background-color: var(--accent-color);
    color: #fff;
}

.btn.solid::before {
    background-color: #fff;
    transform-origin: right;
}

.btn.solid:hover {
    color: var(--accent-color);
}

/* ── Bento Grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    perspective: 1200px;
}

.bento-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.bento-item:hover { border-color: rgba(250, 5, 5, 0.5); }

.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bento-item:hover .bento-img { opacity: 0.8; transform: scale(1.05); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transform: translateZ(30px);
}

.bento-overlay h3 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.bento-overlay p  { font-size: 0.95rem; color: #ccc; }

/* Bento span helpers */
.span-2 { grid-column: span 2; }
.span-1 { grid-column: span 1; }

/* ── Pricing Cards ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card .card-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-card .card-meta {
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing-card .card-desc {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.pricing-card ul {
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #bbb;
    font-size: 0.95rem;
    padding-left: 22px;
    position: relative;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.card-premium {
    background: #140303;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(250, 5, 5, 0.25), inset 0 0 20px rgba(250,5,5,0.05);
}

.badge-pop {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 14px;
    font-family: var(--font-title);
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Salon Cards ── */
.salones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.salon-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    z-index: 2;
}

.salon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(250,5,5,0.1);
    border-color: rgba(250,5,5,0.3);
}

.salon-card .card-icon {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.salon-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.salon-card .capacidad {
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-title);
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.salon-card ul { margin-bottom: 1.5rem; }

.salon-card ul li {
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    color: #bbb;
    font-size: 0.95rem;
}

/* ── Schedule Table ── */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.schedule-table th,
.schedule-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
}

.schedule-table th {
    font-family: var(--font-title);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-transform: uppercase;
    background: rgba(250,5,5,0.07);
}

.schedule-table td:first-child {
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.schedule-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Info / Ubicacion Grid ── */
.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 2rem;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
    filter: grayscale(1) invert(1) contrast(1.2) hue-rotate(180deg);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mapa-wrapper iframe:hover { opacity: 1; }

.info-box { padding: 3rem; }
.info-box h3 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.info-box p  { color: #aaa; margin-bottom: 0.9rem; font-size: 1.05rem; line-height: 1.5; }
.info-box i  { color: var(--accent-color); margin-right: 10px; width: 20px; text-align: center; }

/* ── Contact Cards ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
    border-color: rgba(250,5,5,0.4);
    transform: translateY(-4px);
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.contact-card p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.contact-card i {
    color: var(--accent-color);
    margin-right: 8px;
    width: 18px;
}

/* ── Horarios cards ── */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hours-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.3s ease;
}

.hours-card:hover { border-color: rgba(250,5,5,0.3); }

.hours-card h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hours-card ul { list-style: none; }
.hours-card ul li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.07);
    font-size: 0.92rem;
    color: #bbb;
}

.hours-card ul li:last-child { border-bottom: none; }

/* ── Price Table (Kids Zone) ── */
.price-table-wrap { overflow-x: auto; margin-top: 2rem; }

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.price-table th,
.price-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.07);
    font-size: 1rem;
}

.price-table th {
    font-family: var(--font-title);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #111;
}

.price-table th.col-normal { color: #ccc; }
.price-table th.col-socio  { color: var(--accent-color); }
.price-table th.col-conv   { color: #6cbfff; }

.price-table td:first-child {
    font-family: var(--font-title);
    text-align: left;
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.price-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Services / Ecosystem cards (index) ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250,5,5,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card .card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .card-hours {
    font-size: 0.85rem;
    color: #666;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

/* ── Info Bar ── */
.info-bar {
    background: #111;
    border-top: 1px solid rgba(250,5,5,0.2);
    border-bottom: 1px solid rgba(250,5,5,0.2);
    padding: 1.5rem 5%;
}

.info-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #ccc;
}

.info-bar-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ── Promo cards ── */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promo-card {
    background: linear-gradient(135deg, #160404, #0f0f0f);
    border: 1px solid rgba(250,5,5,0.3);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: rgba(250,5,5,0.08);
    border-radius: 50%;
}

.promo-card h4 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.promo-card p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.5;
}

/* ── Feature list ── */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #111;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 0.92rem;
    color: #bbb;
    line-height: 1.4;
}

/* ── Tag / Chip ── */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(250,5,5,0.1);
    border: 1px solid rgba(250,5,5,0.25);
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #ddd;
    transition: background 0.2s, border-color 0.2s;
}

.tag:hover {
    background: rgba(250,5,5,0.2);
    border-color: rgba(250,5,5,0.5);
}

.tag i { color: var(--accent-color); font-size: 0.85rem; }

/* ── Convenios ── */
.convenios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.convenio-item {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.convenio-item:hover {
    border-color: rgba(250,5,5,0.3);
    transform: translateY(-3px);
}

.convenio-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.convenio-item p {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: #bbb;
    letter-spacing: 0.5px;
}

/* ── Alert / Notice ── */
.notice-box {
    background: rgba(250,5,5,0.08);
    border: 1px solid rgba(250,5,5,0.3);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.notice-box i {
    color: var(--accent-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-box p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #120101 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(250,5,5,0.15);
    border-bottom: 1px solid rgba(250,5,5,0.15);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta-section p  { font-size: 1.1rem; color: #aaa; margin-bottom: 2rem; }

/* ── Hero Page ── */
.hero-page {
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    position: relative;
}

.hero-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0d0d 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.4) 100%);
}

.hero-page .container { z-index: 2; padding-top: var(--nav-h); }

/* ── Footer ── */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 4rem;
}

.footer-container {
    width: var(--container-w);
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.app-badge {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    cursor: default;
}

/* ── Galería (cancha) ── */
/* Masonry (columnas tipo Pinterest) con miniaturas chicas */
.gallery-grid {
    column-width: 210px;
    column-gap: 0.85rem;
    margin-top: 2.5rem;
}
.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.85rem;
    break-inside: avoid;
    cursor: pointer;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
}
.gallery-grid a:hover img { transform: scale(1.06); }

@media (max-width: 600px) {
    .gallery-grid { column-width: 150px; column-gap: 0.6rem; }
    .gallery-grid a { margin-bottom: 0.6rem; }
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 3000;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close { top: 20px; right: 24px; width: 48px; height: 48px; font-size: 2rem; }
.lightbox-nav  { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover { background: var(--accent-color); }
.lightbox-nav:hover   { background: var(--accent-color); transform: translateY(-50%) scale(1.08); }

@media (max-width: 600px) {
    .lightbox-nav   { width: 44px; height: 44px; font-size: 1.8rem; }
    .lightbox-close { width: 42px; height: 42px; top: 12px; right: 12px; }
    .lightbox-prev  { left: 10px; }
    .lightbox-next  { right: 10px; }
}

/* Badge activo (con enlace real) — se siente clickeable */
a.app-badge[href] { cursor: pointer; transition: transform 0.25s ease, opacity 0.25s ease; }
a.app-badge[href]:hover { transform: translateY(-2px); opacity: 0.85; }

.app-badge img {
    height: 34px;
    width: auto;
    display: block;
}


.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: #666;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-contact p {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 8px;
    width: 16px;
}

.footer-contact .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-contact .social-icons a {
    color: #555;
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}

.footer-contact .social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    text-shadow: 0 0 12px var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem var(--container-w);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #444;
}

/* ── Two-col layout ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }

.img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 55vh;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img { transform: scale(1.04); }

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    background: #000;
}
.video-frame video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* ── Menu Section (coffee) ── */
.menu-section { margin-top: 3rem; }

.menu-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(250,5,5,0.3);
    color: var(--accent-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.menu-item {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.menu-item:hover {
    border-color: rgba(250,5,5,0.3);
    transform: translateY(-3px);
}

.menu-item i {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: #bbb;
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    background: #111;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: border-color 0.3s;
}

.step-item:hover { border-color: rgba(250,5,5,0.3); }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.4rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

/* ── Rules list ── */
.rules-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #0f0f0f;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.4;
}

.rules-list li i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Section bg variants ── */
.bg-dark   { background: var(--bg-color); }
.bg-darker { background: #080808; }
.bg-dot {
    background-color: var(--bg-color);
    background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}
.bg-red-grad { background: radial-gradient(circle at 50% 0%, #1a0202 0%, var(--bg-color) 70%); }

/* ── Responsive ── */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .salones-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .two-col.reverse > *:first-child { order: 0; }
    .two-col.reverse > *:last-child  { order: 0; }
    .ubicacion-grid { grid-template-columns: 1fr; }
    .mapa-wrapper iframe { height: 350px; }
    .info-box { padding: 2rem; }
}

@media (max-width: 768px) {
    :root { --nav-h: 70px; }

    /* Navbar mobile */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.25rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.4s;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s;
    }

    .nav-links > a,
    .nav-links .dropdown > a {
        font-size: 1.6rem;
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-links > a::after,
    .nav-links .dropdown > a::after { display: none; }

    /* Dropdown mobile */
    .dropdown { width: 100%; text-align: center; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        background: rgba(250,5,5,0.05);
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown-menu::before { display: none; }
    .dropdown-menu::after { display: none; }

    /* Neutralize desktop hover/centering on touch — only .open reveals the submenu */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        max-height: 0;
        pointer-events: none;
    }
    .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        left: auto;
        transform: none;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        max-height: 300px;
        pointer-events: all;
    }

    .dropdown.open .dropdown-toggle i { transform: rotate(180deg); }

    .dropdown-menu a {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        color: #aaa;
    }

    /* Sections */
    .panel { padding: 5rem 0; }
    .hero-page { min-height: 55vh; background-attachment: scroll; }
    .hero { background-attachment: scroll; }

    .bg-text-stroke { font-size: 22vw; }

    .bento-grid  { display: flex; flex-direction: column; }
    .bento-item  { height: 260px; width: 100%; }
    /* !important para vencer los grid-template-columns inline de cada página */
    .salones-grid  { grid-template-columns: 1fr !important; }
    .services-grid { grid-template-columns: 1fr !important; }
    .pricing-grid  { grid-template-columns: 1fr !important; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }

    .title-huge { font-size: clamp(2.2rem, 9vw, 4rem); }

    .wp-float { bottom: 20px; right: 18px; width: 50px; height: 50px; font-size: 1.6rem; }

    .schedule-table th,
    .schedule-table td { padding: 0.75rem; font-size: 0.9rem; }

    .info-bar-inner { flex-direction: column; align-items: center; }
    .ubicacion-grid { border-radius: 0; }
}

/* ── Teléfono: mejor legibilidad (iconos y letras más grandes) ── */
@media (max-width: 600px) {
    /* Sube ~6% todo el texto basado en rem */
    html { font-size: 17px; }

    /* Texto de contenido un poco más cómodo de leer */
    .info-box p { font-size: 1.12rem; line-height: 1.6; }
    .bento-overlay p { font-size: 1.02rem; }

    /* Footer: es lo más denso/pequeño, se agranda explícitamente */
    .footer-brand .logo { font-size: 1.8rem; }
    .footer-brand p { font-size: 1.02rem; line-height: 1.65; }

    .footer-links h4,
    .footer-contact h4 { font-size: 1rem; letter-spacing: 2.5px; }

    .footer-links a,
    .footer-contact p { font-size: 1.05rem; margin-bottom: 0.85rem; }

    .footer-contact i { width: 18px; margin-right: 10px; }

    /* Iconos sociales más grandes y con mejor tap target */
    .footer-contact .social-icons { gap: 1.4rem; }
    .footer-contact .social-icons a { font-size: 1.9rem; }

    /* Badges de descarga de la app más grandes */
    .app-badges { gap: 0.8rem; margin-top: 1.75rem; }
    .app-badge img { height: 50px; }

    .footer-bottom p { font-size: 0.95rem; }
}

/* ── Gift Cards Modal (Regalos por plan) ── */
.gift-fab {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--font-title);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(250,5,5,0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gift-fab i { font-size: 1.1rem; }
.gift-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(250,5,5,0.55); }

.gift-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(0,0,0,0.82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.gift-modal.open { opacity: 1; visibility: visible; }

.gift-dialog {
    position: relative;
    width: min(1000px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid rgba(250,5,5,0.25);
    border-radius: 18px;
    padding: clamp(1.6rem, 4vw, 3rem);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transform: translateY(20px) scale(0.98);
    transition: transform .35s cubic-bezier(0.19,1,0.22,1);
}
.gift-modal.open .gift-dialog { transform: translateY(0) scale(1); }

.gift-close {
    position: absolute;
    top: 14px; right: 16px;
    width: 42px; height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease;
}
.gift-close:hover { background: var(--accent-color); }

.gift-header { text-align: center; margin-bottom: 2rem; padding: 0 1.5rem; }
.gift-eyebrow {
    display: inline-block;
    font-family: var(--font-title);
    letter-spacing: 3px;
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.gift-header h2 {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    text-transform: uppercase;
    line-height: 1.05;
}
.gift-header p { color: #999; margin-top: 0.6rem; font-size: 0.98rem; }

.gift-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gift-tier {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.4rem 1.1rem;
    display: flex;
    flex-direction: column;
}
.gift-tier .tier-name {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    color: #fff;
}
.gift-tier .tier-plan {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin: 0.15rem 0 1rem;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
}
.gift-tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.gift-tier li { display: flex; gap: 0.6rem; align-items: flex-start; color: #cfcfcf; font-size: 0.9rem; line-height: 1.35; }
.gift-tier li i { color: var(--accent-color); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.gift-tier li strong { color: #fff; }
.gift-tier.featured { border-color: rgba(250,5,5,0.4); background: rgba(250,5,5,0.05); }

.gift-footer { margin-top: 2rem; text-align: center; }
.gift-footer .gift-note { color: #777; font-size: 0.82rem; margin-bottom: 1.2rem; }
.gift-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) { .gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
    .gift-grid { grid-template-columns: 1fr; }
    .gift-fab span { display: none; }
    .gift-fab { padding: 0.9rem; }
}

/* ── Marquesina Promo (home) ── */
.promo-marquee {
    background: var(--accent-color);
    color: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    box-shadow: 0 12px 45px rgba(250,5,5,0.28);
}
.promo-marquee__track {
    display: inline-flex;
    align-items: center;
    will-change: transform;
    animation: promo-scroll 34s linear infinite;
}
.promo-marquee__item {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 64px;
    line-height: 1;
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    text-shadow: 0 3px 14px rgba(0,0,0,0.22);
}
.promo-marquee__sep {
    color: rgba(255,255,255,0.6);
    font-size: 0.45em;
    transform: translateY(-0.12em);
}
.promo-marquee:hover .promo-marquee__track { animation-play-state: paused; }

@keyframes promo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .promo-marquee { height: 72px; }
    .promo-marquee__item { font-size: 2.1rem; gap: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .promo-marquee__track { animation: none; }
}
