/* ============================================================
   BARBERÍA BARBA AZUL — Stylesheet
   Optimizado para rendimiento y responsividad móvil
   ============================================================ */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #00a8e8;
    --gold-light: #48cae4;
    --dark: #060a14;
    --dark-2: #0c1225;
    --dark-3: #121a30;
    --dark-4: #1a2340;
    --white: #f5f5f5;
    --gray: #8899aa;
    --blue-accent: #1b2a5e;
    --blue-light: #00a8e8;
    --red-accent: #e63946;
    --yellow: #f9c74f;
    --navy: #1b2a5e;
    --section-padding: 120px 60px;
    --radius-lg: 24px;
    --radius-md: 20px;
    --radius-sm: 16px;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    min-height: 100vh;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Wrapper para prevenir overflow horizontal en móvil */
.page-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}
/* Seguridad: ninguna sección puede desbordar */
section, .stats-bar, .cta-banner, footer, nav {
    max-width: 100%;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; font-weight: 400;
    color: var(--white);
    letter-spacing: 6px;
    animation: pulse 1.2s ease-in-out infinite;
}
.preloader-logo span { color: var(--blue-light); }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* ========== CURSOR GLOW (desktop only) ========== */
.cursor-glow {
    position: fixed; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,232,0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out;
}

/* ========== PARTICLES ========== */
.particles {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ========== ANIMATED BG BLOBS ========== */
.bg-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.06;
    pointer-events: none; z-index: 0;
}
.bg-blob-1 {
    width: 500px; height: 500px;
    background: var(--gold);
    top: -10%; left: -10%;
    animation: blobDrift1 18s ease-in-out infinite;
}
.bg-blob-2 {
    width: 400px; height: 400px;
    background: var(--blue-light);
    bottom: -10%; right: -10%;
    animation: blobDrift2 22s ease-in-out infinite;
}
.bg-blob-3 {
    width: 350px; height: 350px;
    background: var(--gold-light);
    top: 40%; left: 50%;
    animation: blobDrift3 25s ease-in-out infinite;
}
@keyframes blobDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.15); }
    66% { transform: translate(-40px, 30px) scale(0.9); }
}
@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -50px) scale(1.1); }
    66% { transform: translate(50px, -30px) scale(0.85); }
}
@keyframes blobDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, 50px) scale(1.2); }
}
.section-bg-animated { position: relative; overflow: hidden; }
.gradient-mesh::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,168,232,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42,90,140,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0,168,232,0.03) 0%, transparent 50%);
    animation: meshShift 15s ease-in-out infinite alternate;
    pointer-events: none; z-index: 0;
}
@keyframes meshShift {
    0% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    100% { opacity: 1; transform: scale(1.1) rotate(2deg); }
}
.float-ring {
    position: absolute;
    border: 1px solid rgba(0,168,232,0.08);
    border-radius: 50%;
    pointer-events: none; z-index: 0;
}
.float-ring-1 {
    width: 300px; height: 300px;
    top: 10%; right: 5%;
    animation: ringFloat 12s ease-in-out infinite;
}
.float-ring-2 {
    width: 200px; height: 200px;
    bottom: 15%; left: 8%;
    animation: ringFloat 16s ease-in-out infinite reverse;
}
@keyframes ringFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* ========== HERO SPARKLES ========== */
.hero-sparkles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.sparkle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnim 3s ease-in-out infinite;
}
.sparkle::before {
    content: ''; position: absolute;
    top: -6px; left: 50%; width: 1px; height: 12px;
    background: linear-gradient(transparent, var(--gold-light), transparent);
    transform: translateX(-50%);
}
.sparkle::after {
    content: ''; position: absolute;
    left: -6px; top: 50%; width: 12px; height: 1px;
    background: linear-gradient(transparent, var(--gold-light), transparent);
    transform: translateY(-50%);
}
@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 60px;
    margin: 10px 30px 0;
    width: calc(100% - 60px);
    border-radius: 60px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(0,168,232,0.08);
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; font-weight: 400;
    color: var(--white);
    letter-spacing: 4px;
    white-space: nowrap;
}
.nav-logo span { color: var(--blue-light); }
.nav-links { display: flex; gap: 35px; }
.nav-links a {
    font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--white);
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: transparent;
    border: 1.5px solid var(--yellow);
    color: var(--yellow) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}
.nav-cta:hover, .nav-cta:active {
    background: var(--yellow);
    color: var(--navy) !important;
    box-shadow: 0 0 30px rgba(0,168,232,0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 8px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    pointer-events: none;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== MOBILE MENU OVERLAY (base: siempre oculto) ========== */
.mobile-menu-overlay {
    display: none !important;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--dark);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    overflow: hidden;
}
.mobile-menu-overlay.open {
    display: flex !important;
}
.mobile-menu-overlay a {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    padding: 12px 20px;
    transition: color 0.3s;
    text-align: center;
    text-decoration: none;
}
.mobile-menu-overlay a:active {
    color: var(--gold);
}
.mobile-menu-overlay .nav-cta-mobile {
    margin-top: 20px;
    padding: 14px 35px;
    border: 1.5px solid var(--yellow);
    color: var(--yellow) !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(6,10,20,0.88) 0%, rgba(27,42,94,0.5) 50%, rgba(6,10,20,0.88) 100%),
        url('barbershop-front.png') center/cover no-repeat;
}
.hero-overlay-lines {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0,168,232,0.03) 100px, rgba(0,168,232,0.03) 101px);
    animation: linesScroll 20s linear infinite;
}
@keyframes linesScroll { 0% { transform: translateY(0); } 100% { transform: translateY(101px); } }
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 24px;
    border: 1px solid rgba(0,168,232,0.3);
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.3s both;
}
.hero-badge i { font-size: 0.6rem; }
.hero-logo {
    max-width: 650px; width: 92%;
    margin: 0 auto 20px;
    animation: fadeInUp 1s ease 0.5s both;
    filter: drop-shadow(0 10px 35px rgba(0,50,150,0.5));
}
.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}
.hero-buttons {
    display: flex; gap: 20px; justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}
.btn-primary-gold {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: var(--yellow);
    color: var(--navy); font-weight: 700;
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px;
    border: none; cursor: pointer;
    border-radius: 50px;
    position: relative; overflow: hidden;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px; /* Touch target */
}
.btn-primary-gold::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-primary-gold:hover::before { transform: translateX(100%); }
.btn-primary-gold:hover, .btn-primary-gold:active {
    box-shadow: 0 10px 40px rgba(249,199,79,0.4);
    transform: translateY(-2px);
    background: #ffd166;
}
.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1.5px solid rgba(0,168,232,0.5);
    border-radius: 50px;
    color: var(--gold); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
}
.btn-outline-gold:hover, .btn-outline-gold:active {
    background: rgba(0,168,232,0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--gray); font-size: 0.7rem;
    letter-spacing: 3px; text-transform: uppercase;
    animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ========== SECTION COMMONS ========== */
section { position: relative; z-index: 1; }
.section-padding { padding: var(--section-padding); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 30px; height: 1px;
    background: var(--gold); opacity: 0.4;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 3px;
}
.section-title .accent { color: var(--blue-light); }

/* ========== STATS BAR ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark-2);
    border-top: 1px solid rgba(0,168,232,0.15);
    border-bottom: 1px solid rgba(0,168,232,0.15);
}
.stat-item {
    padding: 50px 30px;
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: ''; position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
    background: rgba(0,168,232,0.15);
}
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; font-weight: 400;
    color: var(--blue-light);
    margin-bottom: 8px;
}
.stat-number .plus { font-size: 2rem; }
.stat-label {
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gray);
}

/* ========== SERVICES ========== */
.services { background: var(--dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative; z-index: 1;
}
.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(0,168,232,0.08);
    border-radius: var(--radius-md);
    padding: 50px 35px;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,168,232,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card .glow {
    position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0,168,232,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}
.service-card:hover .glow { opacity: 1; }
.service-icon {
    width: 65px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    border: 1px solid rgba(0,168,232,0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    position: relative; z-index: 1;
    transition: all 0.4s;
}
.service-card:hover .service-icon {
    background: var(--blue-light);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,168,232,0.2);
}
.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative; z-index: 1;
}
.service-card p {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--gray);
    position: relative; z-index: 1;
}
.service-card .service-price {
    margin-top: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold);
    position: relative; z-index: 1;
}

/* ========== ABOUT / EXPERIENCE ========== */
.about {
    background: var(--dark-2);
    position: relative; overflow: hidden;
}
.about::before {
    content: ''; position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(42,90,140,0.06) 0%, transparent 70%);
    top: -20%; right: -10%;
    border-radius: 50%;
    animation: blobDrift2 20s ease-in-out infinite;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative; height: 550px;
}
.about-img-main {
    width: 75%; height: 85%;
    object-fit: cover;
    position: absolute; top: 0; left: 0;
    border: 2px solid rgba(0,168,232,0.15);
    border-radius: var(--radius-lg);
}
.about-img-secondary {
    width: 55%; height: 55%;
    object-fit: contain;
    position: absolute; bottom: 0; right: 0;
    border: 2px solid rgba(0,168,232,0.15);
    border-radius: var(--radius-md);
    box-shadow: -20px -20px 0 var(--dark-2);
    background: rgba(6,10,20,0.95);
    padding: 15px;
}
.about-badge-float {
    position: absolute; top: 50%; right: 10%;
    transform: translateY(-50%);
    background: var(--yellow);
    color: var(--navy);
    padding: 22px 28px;
    border-radius: var(--radius-sm);
    text-align: center;
    z-index: 2;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(249,199,79,0.3); }
    50% { box-shadow: 0 10px 40px rgba(249,199,79,0.6); transform: translateY(-52%); }
}
.about-badge-float .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; font-weight: 900;
    line-height: 1;
}
.about-badge-float .text {
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
}
.about-content .about-desc {
    font-size: 1rem; line-height: 1.9;
    color: var(--gray);
    margin-bottom: 30px;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-bottom: 40px;
}
.about-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; font-weight: 500;
}
.about-feature i {
    color: var(--gold); font-size: 1.1rem;
    flex-shrink: 0;
}

/* ========== BARBERS / TEAM ========== */
.team { background: var(--dark); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative; z-index: 1;
}
.barber-card {
    position: relative; overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-md);
    -webkit-tap-highlight-color: transparent;
}
.barber-img {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.barber-card:hover .barber-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.barber-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s;
}
.barber-card:hover .barber-overlay {
    transform: translateY(0); opacity: 1;
}
.barber-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
}
.barber-overlay .role {
    font-size: 0.75rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2px;
}

/* ========== GAMER ZONE ========== */
.gamer {
    background: linear-gradient(135deg, var(--dark-2) 0%, #0d1f4d 50%, var(--navy) 100%);
    overflow: hidden;
}
.gamer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.gamer-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.gamer-content h2 .accent { color: var(--yellow); }
.gamer-content p {
    font-size: 1rem; line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.gamer-features {
    display: flex; flex-direction: column; gap: 15px;
    margin-bottom: 35px;
}
.gamer-feature {
    display: flex; align-items: center; gap: 15px;
    font-size: 0.95rem; font-weight: 500;
}
.gamer-feature i {
    color: var(--gold); font-size: 1.2rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(0,168,232,0.3);
    border-radius: 12px;
    flex-shrink: 0;
}
.gamer-img-container { position: relative; }
.gamer-img-container img {
    width: 100%; height: 450px;
    object-fit: cover;
    border: 2px solid rgba(0,168,232,0.15);
    border-radius: var(--radius-lg);
}
.gamer-img-container::before {
    content: ''; position: absolute;
    inset: -15px; border: 1px solid rgba(0,168,232,0.1);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(0,168,232,0.1); }
    50% { border-color: rgba(0,168,232,0.25); }
}

/* ========== INSTAGRAM ========== */
.instagram-section {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}
.instagram-bg-texture {
    position: absolute; inset: 0;
    background: url('brick-wall.png') repeat;
    background-size: 500px;
    opacity: 0.04;
}
.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.instagram-embed-wrapper {
    max-width: 540px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}
.instagram-cta {
    text-align: center;
}
.instagram-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}
.instagram-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 3px;
    flex-shrink: 0;
}
.instagram-avatar-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.instagram-avatar-inner img {
    width: 85%; height: 85%;
    object-fit: contain;
}
.instagram-handle h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin: 0;
}
.instagram-handle p {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--dark); }
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative; z-index: 1;
}
.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(0,168,232,0.08);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    transition: all 0.4s;
}
.testimonial-card:hover {
    border-color: rgba(0,168,232,0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.testimonial-stars {
    display: flex; gap: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 1rem; line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex; align-items: center; gap: 15px;
}
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600; font-size: 0.95rem;
}
.testimonial-role {
    font-size: 0.75rem; color: var(--gray);
}
.testimonial-quote-icon {
    position: absolute; top: 25px; right: 30px;
    font-size: 3rem; color: rgba(0,168,232,0.08);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--yellow) 0%, #f0a500 100%);
    padding: 80px 60px;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -200px; right: -100px;
    animation: ctaOrb 10s ease-in-out infinite;
}
.cta-banner::after {
    content: ''; position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -150px; left: -80px;
    animation: ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}
.cta-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative; z-index: 1;
}
.cta-banner p {
    font-size: 1rem;
    color: rgba(10,10,10,0.7);
    margin-bottom: 30px;
    position: relative; z-index: 1;
}
.btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px;
    border: none; cursor: pointer;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
    position: relative; z-index: 1;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}
.btn-dark:hover, .btn-dark:active {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========== CONTACT ========== */
.contact { background: var(--dark-2); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 35px; }
.contact-item {
    display: flex; gap: 20px; align-items: flex-start;
}
.contact-icon {
    width: 55px; height: 55px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    border: 1px solid rgba(0,168,232,0.2);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: all 0.4s;
}
.contact-item:hover .contact-icon {
    background: var(--blue-light);
    color: var(--white);
    border-radius: 50%;
}
.contact-item h4 {
    font-size: 1rem; font-weight: 600;
    margin-bottom: 5px;
}
.contact-item p {
    font-size: 0.9rem; color: var(--gray);
    line-height: 1.6;
}
.contact-item a { color: var(--gold); }
.contact-socials {
    display: flex; gap: 15px; margin-top: 10px;
}
.social-link {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(0,168,232,0.2);
    border-radius: 50%;
    font-size: 1.1rem; color: var(--gold);
    transition: all 0.4s;
    -webkit-tap-highlight-color: transparent;
}
.social-link:hover, .social-link:active {
    background: var(--blue-light);
    color: var(--white);
    transform: translateY(-3px);
}
.map-container {
    border: 2px solid rgba(0,168,232,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.map-container iframe {
    width: 100%; height: 100%; min-height: 420px;
    border: none; filter: grayscale(60%) invert(92%) contrast(85%);
    transition: filter 0.4s;
}
.map-container:hover iframe {
    filter: grayscale(30%) invert(92%) contrast(90%);
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(0,168,232,0.1);
    padding: 50px 60px 30px;
}
.footer-top {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap; gap: 20px;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; font-weight: 400;
    color: var(--white);
    letter-spacing: 4px;
}
.footer-logo span { color: var(--blue-light); }
.footer-links {
    display: flex; gap: 30px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.8rem; color: var(--gray);
    text-transform: uppercase; letter-spacing: 2px;
    transition: color 0.3s;
    padding: 5px 0;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem; color: var(--gray);
    letter-spacing: 1px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    cursor: pointer; z-index: 999;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    -webkit-tap-highlight-color: transparent;
    border: none;
}
.back-to-top.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover, .back-to-top:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,168,232,0.4);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s;
    -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover, .whatsapp-float:active { transform: scale(1.1); }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
}

/* ========== NOSCRIPT ========== */
.noscript-msg {
    background: var(--yellow);
    color: var(--navy);
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 30px; }
    .navbar { padding: 18px 30px; }
    .navbar.scrolled {
        padding: 12px 25px;
        margin: 8px 15px 0;
        width: calc(100% - 30px);
    }
    .about-grid, .gamer-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-grid { gap: 40px; }
    .about-images { height: 400px; }
    .gamer-grid { gap: 50px; }
    .gamer-img-container img { height: 350px; }
    .gamer-img-container::before { inset: -10px; }
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .instagram-embed-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    .cta-banner { padding: 60px 30px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {
    :root { --section-padding: 70px 20px; }

    /* ====== PREVENIR OVERFLOW HORIZONTAL EN MÓVIL ====== */
    /* Ocultar TODAS las decoraciones que pueden desbordar */
    .cursor-glow { display: none !important; }
    .bg-blob, .float-ring { display: none !important; }
    .about::before, .gradient-mesh::before { display: none !important; }
    .cta-banner::before, .cta-banner::after { display: none !important; }
    .instagram-bg-texture { display: none !important; }
    .particles { opacity: 0.5; }
    /* Todas las secciones contienen su contenido */
    section, .stats-bar, .cta-banner, footer, nav, .page-wrapper {
        overflow: hidden !important;
        max-width: 100% !important;
    }
    /* Romper texto largo (emails, URLs) */
    a, p, span, h1, h2, h3, h4 {
        overflow-wrap: break-word;
        word-break: break-word;
    }
    /* Instagram embed no desborda */
    .instagram-media, .instagram-embed-wrapper iframe {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* NAVBAR MOBILE */
    .nav-links { display: none; }
    .nav-cta-desktop { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 15px 20px; }
    .navbar.scrolled {
        padding: 10px 20px;
        margin: 6px 10px 0;
        width: calc(100% - 20px);
        border-radius: 40px;
    }
    .nav-logo { font-size: 1.5rem; letter-spacing: 3px; }

    /* Mobile menu overlay ya definido en base CSS */

    /* HERO MOBILE */
    .hero { min-height: 100svh; }
    .hero-badge {
        font-size: 0.6rem; letter-spacing: 2px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    .hero-logo { width: 85%; max-width: 400px; }
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
    }
    .hero-buttons .btn-primary-gold,
    .hero-buttons .btn-outline-gold {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.8rem;
    }
    .hero-scroll { bottom: 25px; }

    /* STATS MOBILE */
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 30px 15px; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 2px; }
    /* Ocultar separadores verticales en 2 columnas */
    .stat-item:nth-child(2)::after { display: none; }

    /* SERVICES MOBILE */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 35px 25px;
    }
    .section-header { margin-bottom: 50px; }

    /* ABOUT MOBILE */
    .about-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .about-img-main {
        position: relative;
        width: 100%;
        height: 280px;
        border-radius: var(--radius-md);
    }
    .about-img-secondary {
        position: relative;
        width: 60%;
        height: auto;
        margin: -40px auto 0;
        box-shadow: none;
        border-radius: var(--radius-sm);
    }
    .about-badge-float {
        position: relative;
        top: auto; right: auto;
        transform: none;
        margin: 10px auto 0;
        display: inline-block;
    }
    .about-images { text-align: center; }
    .about-features { grid-template-columns: 1fr; gap: 15px; }
    .about-content .section-title { text-align: center !important; }
    .about-content .section-tag { justify-content: center; }
    .about-content { text-align: center; }

    /* TEAM MOBILE */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    /* Mostrar overlay siempre en móvil (no hay hover) */
    .barber-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    .barber-img { filter: grayscale(0%); }
    .barber-overlay h3 { font-size: 1rem; letter-spacing: 2px; }
    .barber-overlay .role { font-size: 0.65rem; }

    /* GAMER MOBILE */
    .gamer-img-container img { height: 280px; }
    .gamer-content h2 { text-align: center; }
    .gamer-content p { text-align: center; }
    .gamer-content { text-align: center; }
    .gamer-feature { justify-content: center; }
    .gamer-content .btn-primary-gold { width: 100%; max-width: 320px; justify-content: center; }

    /* INSTAGRAM MOBILE */
    .instagram-embed-wrapper { max-width: 100%; }

    /* TESTIMONIALS MOBILE */
    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card { padding: 30px 25px; }

    /* CTA BANNER MOBILE */
    .cta-banner { padding: 50px 20px; }
    .btn-dark {
        padding: 14px 35px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* CONTACT MOBILE */
    .contact-grid { gap: 40px; }
    .map-container iframe { min-height: 300px; }

    /* FOOTER MOBILE */
    footer { padding: 40px 20px 25px; }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links a {
        font-size: 0.7rem;
        padding: 8px 5px;
    }

    /* FLOATING BUTTONS MOBILE */
    .whatsapp-float {
        bottom: 20px; left: 20px;
        width: 55px; height: 55px;
        font-size: 1.5rem;
    }
    .back-to-top {
        bottom: 20px; right: 20px;
        width: 45px; height: 45px;
        font-size: 1rem;
    }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
    :root { --section-padding: 50px 16px; }

    .hero-logo { width: 90%; }
    .hero-subtitle { letter-spacing: 3px; font-size: 0.7rem; }
    .hero-badge { font-size: 0.55rem; padding: 5px 12px; }

    .stats-bar { grid-template-columns: 1fr; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item { padding: 25px 15px; }
    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(0,168,232,0.08);
    }

    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .barber-card { max-width: 350px; margin: 0 auto; }

    .section-title { letter-spacing: 2px; }
    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }
    .section-tag::before, .section-tag::after { width: 20px; }

    .service-card { padding: 30px 20px; }
    .service-icon { width: 55px; height: 55px; font-size: 1.3rem; }

    .about-img-main { height: 220px; }
    .about-desc { font-size: 0.9rem !important; }

    .testimonial-card { padding: 25px 20px; }
    .testimonial-text { font-size: 0.9rem; }
    .testimonial-quote-icon { font-size: 2rem; }

    .contact-item { gap: 15px; }
    .contact-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    .map-container iframe { min-height: 250px; }

    .gamer-img-container img { height: 220px; }
    .gamer-img-container::before { display: none; }

    .cta-banner h2 { font-size: 1.8rem; }

    footer { padding: 30px 16px 20px; }
    .footer-bottom { font-size: 0.65rem; }
}

/* ================================================================
   RESPONSIVE — VERY SMALL (max-width: 360px)
   ================================================================ */
@media (max-width: 360px) {
    :root { --section-padding: 40px 12px; }
    .navbar { padding: 12px 15px; }
    .navbar.scrolled {
        margin: 5px 8px 0;
        width: calc(100% - 16px);
        padding: 8px 15px;
    }
    .nav-logo { font-size: 1.3rem; }
    .hero-buttons .btn-primary-gold,
    .hero-buttons .btn-outline-gold {
        padding: 12px 20px;
        font-size: 0.75rem;
    }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.6rem; }
}

/* ================================================================
   LANDSCAPE MOBILE
   ================================================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100vh; }
    .hero-logo { max-width: 250px; }
    .hero-badge { margin-bottom: 10px; }
    .hero-subtitle { margin-bottom: 20px; }
    .hero-scroll { display: none; }
    .hero-buttons { flex-direction: row; }
}

/* ================================================================
   TOUCH DEVICE OPTIMIZATIONS
   ================================================================ */
@media (hover: none) and (pointer: coarse) {
    /* Desactivar efectos hover en dispositivos táctiles */
    .service-card:hover { transform: none; }
    .service-card:hover::before { transform: scaleX(0); }
    .service-card:active {
        transform: scale(0.98);
        border-color: rgba(0,168,232,0.2);
    }
    .testimonial-card:hover { transform: none; }
    .barber-card:hover .barber-img { transform: none; }

    /* Hover states → siempre visibles */
    .barber-overlay { transform: translateY(0); opacity: 1; }
    .barber-img { filter: grayscale(0%); }

    /* Eliminar animaciones del tilt en tarjetas */
    .service-card { transform: none !important; }

    /* Tap feedback visual */
    .btn-primary-gold:active { transform: scale(0.96) !important; }
    .btn-outline-gold:active { transform: scale(0.96) !important; }
    .btn-dark:active { transform: scale(0.96) !important; }
    .social-link:active { transform: scale(0.9) !important; }
}

/* ================================================================
   PREFERS REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .particles, .hero-sparkles, .cursor-glow { display: none; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
