/* ============================================
   Victory Gym Măgurele · 2026
   ============================================ */

:root {
    --bg: #0a0a0a;
    --bg-2: #111114;
    --bg-3: #16161a;
    --surface: #1c1c22;
    --line: #26262e;
    --line-2: #2f2f38;
    --text: #f4f4f5;
    --text-dim: #a1a1aa;
    --text-mute: #71717a;
    --red: #E11D26;
    --red-2: #c11820;
    --red-glow: rgba(225, 29, 38, 0.35);
    --green: #25D366;
    --green-2: #128C7E;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --container: 1200px;
    --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 12px 40px -12px var(--red-glow);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --header-h: 76px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.05;
}
::selection { background: var(--red); color: #fff; }

/* CONTAINER */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============= HEADER ============= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-icon { width: 38px; height: 38px; }
.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.brand-text small {
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--text-mute);
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.main-nav ul {
    display: flex;
    gap: 4px;
}
.nav-link {
    position: relative;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: all 0.2s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-cta {
    background: var(--red);
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
}
.btn-cta:hover {
    background: var(--red-2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}
.btn-primary {
    background: var(--green);
    color: #fff;
    padding: 16px 28px;
    font-size: 15px;
}
.btn-primary:hover {
    background: var(--green-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
    padding: 16px 28px;
    font-size: 15px;
}
.btn-ghost:hover {
    background: var(--surface);
    border-color: var(--text-dim);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============= HERO ============= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) contrast(1.05) saturate(0.9);
    transform: scale(1.05);
    animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, transparent, rgba(0, 0, 0, 0.4) 70%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%),
        linear-gradient(120deg, rgba(225, 29, 38, 0.15) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 24px 100px;
}
.hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(225, 29, 38, 0.15);
    border: 1px solid rgba(225, 29, 38, 0.4);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(48px, 9vw, 110px);
    color: #fff;
    margin-bottom: 24px;
    line-height: 0.95;
    font-weight: 400;
}
.hero-title .accent {
    color: var(--red);
    position: relative;
    display: inline-block;
}
.hero-title .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: 0.05em;
    height: 0.12em;
    background: var(--red);
    opacity: 0.25;
    z-index: -1;
}
.hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    max-width: 560px;
    color: var(--text-dim);
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 600px;
}
.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-meta strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--red);
    letter-spacing: 0.1em;
}
.hero-meta div:not(:last-child) {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--text-dim);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ============= SECTIONS ============= */
.section {
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
}
.section-alt {
    background: var(--bg-2);
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-head h2 {
    font-size: clamp(36px, 5.5vw, 64px);
    color: #fff;
    margin-bottom: 20px;
}
.lead {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============= STATS ============= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.stat:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.stat-num span {
    color: var(--red);
    font-size: 0.5em;
    margin-left: 4px;
    margin-top: 0.3em;
}
.stat-label {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============= SERVICES ============= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.section-alt .service-card { background: var(--surface); }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
    box-shadow: var(--shadow);
}
.service-card:hover::before { width: 100%; }
.service-card.highlight {
    background: linear-gradient(135deg, rgba(225, 29, 38, 0.08), transparent 50%);
    border-color: rgba(225, 29, 38, 0.3);
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(225, 29, 38, 0.1);
    color: var(--red);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.service-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.65;
}
.service-cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* ============= SCHEDULE ============= */
.schedule-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}
.day-btn {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    background: var(--surface);
}
.day-btn:hover { border-color: var(--text-dim); color: var(--text); }
.day-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.day-col {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    transition: opacity 0.3s, transform 0.3s;
}
.day-col.hidden {
    display: none;
}
.day-title {
    font-size: 22px;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.class-card {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.class-card:last-child { border-bottom: 0; padding-bottom: 0; }
.class-card time {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.class-card h4 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.class-card span {
    font-size: 12.5px;
    color: var(--text-mute);
}

.schedule-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
}
.schedule-note a {
    color: var(--red);
    border-bottom: 1px solid currentColor;
}

/* ============= GALLERY ============= */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-flow: dense;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    background: var(--surface);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.3s;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ============= TARIFE ============= */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 48px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.tab {
    padding: 12px 24px;
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.25s var(--ease);
}
.tab:hover { color: var(--text); }
.tab.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 16px -4px var(--red-glow);
}

.pricing-panel {
    display: none;
    animation: fadeUp 0.4s var(--ease);
}
.pricing-panel.active { display: block; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.price-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.price-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.price-card h4 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
}
.price-card .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}
.price-card .price span {
    font-size: 16px;
    color: var(--text-mute);
    letter-spacing: 0.1em;
    font-weight: 400;
}
.price-card small {
    display: block;
    margin-top: 12px;
    color: var(--text-mute);
    font-size: 12px;
    letter-spacing: 0.02em;
}
.price-card.featured {
    background: linear-gradient(150deg, rgba(225, 29, 38, 0.15), var(--surface) 60%);
    border-color: var(--red);
}
.price-card.featured .price { color: #fff; }
.ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pilates-sub {
    font-size: 22px;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 24px 0 16px;
}
.pilates-sub:first-child { margin-top: 0; }
.pilates-note {
    margin-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 14.5px;
}
.pilates-note a {
    color: var(--red);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.price-notes {
    margin-top: 48px;
    padding: 28px;
    background: var(--bg-2);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.section-alt .price-notes { background: var(--bg); }
.price-notes h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}
.price-notes ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.price-notes li {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.price-notes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}
.see-official {
    display: inline-block;
    margin-top: 20px;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* ============= HOURS BAND ============= */
.hours-band {
    background: linear-gradient(120deg, var(--red) 0%, var(--red-2) 100%);
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}
.hours-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.1), transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 0, 0, 0.04) 20px, rgba(0, 0, 0, 0.04) 21px);
    pointer-events: none;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
}
.hours-grid > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hours-day {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}
.hours-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #fff;
    letter-spacing: 0.05em;
}

/* ============= CONTACT ============= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    color: inherit;
}
.contact-card:hover:not(.no-link) {
    border-color: var(--red);
    transform: translateX(4px);
}
.contact-card.whatsapp {
    grid-column: span 2;
    background: linear-gradient(110deg, var(--green) 0%, var(--green-2) 100%);
    border-color: transparent;
    color: #fff;
}
.contact-card.whatsapp:hover {
    transform: translateY(-2px) translateX(0);
    box-shadow: 0 12px 32px -10px rgba(37, 211, 102, 0.5);
}
.contact-card.whatsapp .contact-icon { background: rgba(255, 255, 255, 0.2); color: #fff; }
.contact-card.whatsapp .contact-label { color: rgba(255, 255, 255, 0.85); }
.contact-card.whatsapp small { color: rgba(255, 255, 255, 0.75); }

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(225, 29, 38, 0.1);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-card > div:not(.contact-icon) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.contact-label {
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.contact-card strong {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
}
.contact-card.whatsapp strong { color: #fff; font-size: 18px; }
.contact-card small {
    color: var(--text-mute);
    font-size: 12.5px;
    margin-top: 1px;
}

.socials {
    grid-column: span 2;
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text-dim);
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.contact-map {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(0.9) hue-rotate(180deg);
}

/* ============= FOOTER ============= */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--line);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.footer-grid h5 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.footer-grid ul li {
    margin-bottom: 8px;
}
.footer-grid a, .footer-grid li {
    color: var(--text-dim);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-grid a:hover { color: var(--text); }
.brand-footer { margin-bottom: 14px; }
.brand-footer .brand-icon { width: 44px; height: 44px; }
.brand-footer .brand-text { font-size: 26px; }
.footer-tag {
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.03em;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-dim);
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.footer-socials a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-mute);
    font-size: 13px;
}

/* ============= FAB WhatsApp ============= */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 32px -8px rgba(37, 211, 102, 0.6);
    z-index: 50;
    transition: all 0.3s var(--ease);
    animation: pulseWA 2.6s infinite;
}
.fab-whatsapp:hover {
    background: var(--green-2);
    transform: scale(1.08);
}
@keyframes pulseWA {
    0%, 100% { box-shadow: 0 10px 32px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 10px 32px -8px rgba(37, 211, 102, 0.6), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============= LIGHTBOX ============= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 100px -20px rgba(0, 0, 0, 0.8);
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.2s;
    display: grid;
    place-items: center;
}
.lb-close { top: 24px; right: 24px; font-size: 32px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ============= REVEAL ON SCROLL ============= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        align-items: stretch;
        transform: translateY(-110%);
        transition: transform 0.3s var(--ease);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
    }
    .nav-link.active::after { display: none; }
    .nav-link.active { color: var(--red); }
    .nav-cta { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: auto; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    :root { --header-h: 64px; }

    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .hero-meta { gap: 18px; }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
    .contact-card.whatsapp { grid-column: span 1; }
    .socials { grid-column: span 1; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .fab-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }

    .tabs { padding: 4px; gap: 2px; }
    .tab { padding: 10px 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-bg img { transform: none; }
}
