/* ============================================
   PERRUQUERIA UNNA — Premium Luxury Styles
   ============================================ */

/* --- Custom Properties --- */
/* Archivo movido a styles.css */
/* ============================================
    PERRUQUERIA UNNA — Premium Luxury Styles
    ============================================ */
/* --- Custom Properties --- */
:root {
    --color-ivory: #FFFFF0;
    --color-ivory-dark: #F5F5E8;
    --color-black: #1a1a1a;
    --color-black-soft: #2d2d2d;
    --color-gold: #D4AF37;
    --color-gold-light: #E8D48B;
    --color-gold-dark: #B8962E;
    --color-bronze: #CD7F32;
    --color-warm-gray: #8B8680;
    --color-light-gray: #F8F7F4;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-warm-gray);
    max-width: 600px;
    line-height: 1.8;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-bronze));
    margin: 24px 0;
}

.gold-divider-center {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-bronze));
    margin: 24px auto;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-bronze));
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bronze), var(--color-gold));
    transition: left 0.5s var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo img {
    height: 70px;
    width: auto;
}

.nav-logo-text h1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
}

.nav-logo-text span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px !important;
    font-size: 0.75rem !important;
    background: linear-gradient(135deg, var(--color-gold), var(--color-bronze)) !important;
    border-radius: 50px !important;
    color: #fff !important;
    letter-spacing: 2px !important;
    transition: all 0.3s var(--transition-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    opacity: 0.9;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.4s var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('foto-perruqueria/img-1.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s var(--transition-smooth);
    filter: brightness(0.4);
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(26, 26, 26, 0.5) 0%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s var(--transition-smooth) forwards;
    margin-top: 40px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s var(--transition-smooth) forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.7s var(--transition-smooth) forwards;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.9s var(--transition-smooth) forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s 1.2s var(--transition-smooth) forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* --- About Section --- */
.about {
    background: var(--color-ivory);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.about-stat h3 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.about-stat p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-warm-gray);
}

/* --- Services Section --- */
.services {
    background: var(--color-light-gray);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.mobile-swipe-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -32px auto 40px;
    color: var(--color-warm-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-swipe-indicator i {
    color: var(--color-gold);
    font-size: 1.2rem;
    animation: swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(12px);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-category-card {
    background: #fff;
    border-radius: 8px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-bronze));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.service-category-card:hover::before {
    transform: scaleX(1);
}

.service-category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: all 0.4s var(--transition-smooth);
}

.service-category-card:hover .service-category-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-bronze));
    color: #fff;
    transform: scale(1.1);
}

.service-category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-category-card p {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    font-size: 0.9rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list .service-price {
    font-weight: 600;
    color: var(--color-gold-dark);
    white-space: nowrap;
}

/* --- Gallery Section --- */
.gallery {
    background: var(--color-black);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header .section-title {
    color: #fff;
}

.gallery-header .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--color-ivory);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    padding: 48px 36px;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--color-black-soft);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: 0.85rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-bronze));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.75rem;
    color: var(--color-warm-gray);
}

/* --- Booking CTA Section --- */
.booking-cta {
    position: relative;
    padding: 140px 0;
    background-image: url('foto-perruqueria/img-6.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
}

.booking-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.booking-cta-content .section-title {
    color: #fff;
}

.booking-cta-content .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 48px;
}

/* --- Schedule Section --- */
.schedule {
    background: var(--color-light-gray);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.schedule-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    transition: background 0.3s;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: rgba(212, 175, 55, 0.04);
}

.schedule-row .day {
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-row .hours {
    color: var(--color-warm-gray);
    font-size: 0.9rem;
}

.schedule-row .closed {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Contact Section --- */
.contact {
    background: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info-list {
    list-style: none;
    margin-top: 32px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
}

.contact-info-text a:hover {
    color: var(--color-gold);
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(26, 26, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-black-soft);
    transition: all 0.4s var(--transition-smooth);
}

.contact-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
    transform: translateY(-4px);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: var(--shadow-soft);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* --- Footer --- */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-rating .stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.footer-rating span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* --- Booking Section Overrides (Preserve existing functionality) --- */
#booking-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

#booking-section .service-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

#booking-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

#booking-section .service-card.selected {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.06);
}

#booking-section .professional-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

#booking-section .professional-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

#booking-section .professional-card.selected {
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

#booking-section .time-slot {
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border-radius: 8px;
}

#booking-section .time-slot:hover {
    background: rgba(212, 175, 55, 0.15);
}

#booking-section .time-slot.selected {
    background: var(--color-gold);
    color: #fff;
}

/* Progress steps */
.step-indicator div:first-child {
    transition: all 0.4s var(--transition-smooth);
}

/* Booking Back-to-Menu button */
.back-to-menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 14px 0;
    display: none;
}

.back-to-menu-bar.visible {
    display: block;
}

.back-to-menu-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Animations --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.stagger-children.revealed>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* Catch-all for 7th child and beyond */
.stagger-children.revealed>*:nth-child(n+7) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    animation: fadeIn 0.3s ease-in;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal>div {
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loader {
    border: 3px solid rgba(212, 175, 55, 0.15);
    border-top: 3px solid var(--color-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cart-floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
}

.cart-badge {
    animation: pulse 2s infinite;
}

.mobile-swipe-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-swipe-indicator i {
    color: var(--color-gold);
    animation: swipeHint 1.6s ease-in-out infinite;
}

@keyframes swipeHint {
    0%,
    100% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        gap: 28px;
        transition: right 0.5s var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .schedule-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .about-image-accent {
        display: none;
    }

    .about-stats {
        justify-content: center;
    }

    .mobile-swipe-indicator {
        display: flex;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin: 0 -20px;
        padding: 0 20px 24px 20px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        /* Hide scrollbar for a cleaner look */
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-category-card {
        min-width: 85vw;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-scroll {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .booking-cta {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-logo-text h1 {
        font-size: 1.1rem;
    }
}

/* --- Booking Sticky Footer --- */
.booking-footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 50;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#services-step .booking-footer-fixed {
    justify-content: center;
}

.booking-spacer {
    height: 100px;
    width: 100%;
}

/* --- Auth Modal --- */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.auth-modal.hidden {
    display: none;
    opacity: 0;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.auth-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transform: translateY(0);
    animation: authModalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.auth-modal-close:hover {
    color: #333;
}

/* --- Booking Item (My Bookings) --- */
.booking-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.booking-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.booking-item-card.past {
    border-left-color: var(--color-warm-gray);
    opacity: 0.8;
}

.hidden {
    display: none !important;
}

/* ============================================
   INFINITE 360 SCROLL GALLERY
   ============================================ */
.scrolling-gallery-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Evita que las columnas se encojan a 85vh */
    gap: 24px;
    padding: 20px 0;
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.scrolling-gallery-wrapper:hover .scrolling-column {
    animation-play-state: paused;
}

.scrolling-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 450px;
    height: max-content;
    /* Deja que crezca según las imágenes */
    animation: scrollVertical 45s linear infinite;
}

.scrolling-column.reverse {
    animation: scrollVerticalReverse 45s linear infinite;
    /* Removido margin-top que se calculaba en base al ancho */
}

.scrolling-item {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
    background-color: var(--color-black);
}

.scrolling-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-elevated);
    z-index: 10;
}

.scrolling-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.scrolling-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

.scrolling-item:hover::after {
    opacity: 1;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollVerticalReverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .scrolling-gallery-wrapper {
        gap: 12px;
        height: 70vh;
    }

    .scrolling-column {
        gap: 12px;
    }

    .scrolling-item {
        border-radius: 8px;
    }

    .scrolling-item img {
        border-radius: 8px;
    }
}