/* =============================================
   VARIABLES & BASE
   ============================================= */
:root {
    /* ── Tipografía ── */
    --font-serif:      'Cinzel', Georgia, serif;          /* Serif premium de lujo    */
    --font-sans:       'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* ── Oro principal ── */
    --gold:            #D4AF37;   /* Oro satinado clásico          */
    --gold-light:      #E2C45A;   /* Hover / elementos activos     */
    --gold-dark:       #A8891A;   /* Pressed / sombra              */
    --gold-shimmer:    #F0DFA0;   /* Brillo champán claro          */
    --gold-glow:       rgba(212, 175, 55, 0.18); /* Resplandor suave */

    /* ── Sombra tipográfica dorada ── */
    --gold-text-shadow:
        0 1px 2px rgba(168, 137, 26, 0.55),
        0 2px 8px rgba(212, 175, 55, 0.22),
        0 0px 1px rgba(255, 255, 255, 0.10);

    /* ── Neutros ── */
    --black:           #0a0a0a;
    --dark:            #111111;
    --dark-2:          #1a1a1a;
    --white:           #FAFAFA;   /* Blanco limpio para máx. contraste con el oro */
    --gray:            #888888;

    /* ── Layout ── */
    --nav-height:      150px;
    --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    background: var(--white);
    color: #222222;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════════════
   ENCABEZADOS — EFECTO ORO METÁLICO REFLECTANTE
   Técnica: linear-gradient + background-clip:text
   Compatibilidad: Chrome, Edge, Firefox 103+, Safari
══════════════════════════════════════════════════════ */

/* ── Degradado dorado reutilizable (variable) ── */
:root {
    /* Reflejo metálico diagonal: bronce oscuro → destello blanco (nítido) → oro → bronce */
    --gold-metallic-gradient: linear-gradient(
        45deg,
        #7A5C10 0%,      /* bronce oscuro / sombra profunda   */
        #B8941F 22%,     /* oro oscuro de transición          */
        #D4AF37 43%,     /* oro base                          */
        #FFF7D6 50%,     /* destello / reflejo de luz central (nítido) */
        #D4AF37 57%,     /* oro base (lado derecho)           */
        #B8941F 78%,     /* oro oscuro de transición          */
        #7A5C10 100%     /* bronce profundo de cierre         */
    );
}

/* ── Base compartida: tipografía + clip ── */
h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.15;
    text-transform: uppercase;

    /* ── Inyecta el degradado DENTRO de las letras ── */
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent; /* fallback por si background-clip falla */

    /* ── Volumen 3D: drop-shadow en lugar de text-shadow    ──
       (text-shadow es incompatible con -webkit-text-fill-color;
        filter:drop-shadow() sí funciona correctamente)       */
    filter:
        drop-shadow(0 1px 1px rgba(100, 75, 5, 0.55))
        drop-shadow(0 2px 6px rgba(212, 175, 55, 0.20));
}

/* ── Fallback para navegadores sin soporte (muy pocos) ── */
@supports not (-webkit-background-clip: text) {
    h1, h2, h3 {
        color: #D4AF37;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* ────────────────────────────────────────────────────
   H1 — Título heroico principal
   Cinzel 900 · espaciado máximo · sombra pronunciada
──────────────────────────────────────────────────── */
h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 600; /* Semibold elegante y más delgado */
    letter-spacing: 0.11em; /* Elegancia sutil intermedio */
    /* Drop-shadow más dramático para el hero */
    filter:
        drop-shadow(0 2px 2px rgba(80, 55, 0, 0.65))
        drop-shadow(0 4px 14px rgba(212, 175, 55, 0.35))
        drop-shadow(0 0 1px rgba(255, 247, 214, 0.20));
}

/* ────────────────────────────────────────────────────
   H2 — Subtítulo de sección
   Cinzel 800 · espaciado medio
──────────────────────────────────────────────────── */
h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 500; /* Medium elegante y más delgado */
    letter-spacing: 0.08em; /* Elegancia sutil intermedio */
    filter:
        drop-shadow(0 1px 1px rgba(80, 55, 0, 0.50))
        drop-shadow(0 3px 10px rgba(212, 175, 55, 0.22));
}

/* ────────────────────────────────────────────────────
   H3 — Título de componente / tarjeta
   Cinzel 700 · sombra sutil
──────────────────────────────────────────────────── */
h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500; /* Medium elegante y más delgado */
    letter-spacing: 0.07em; /* Elegancia sutil intermedio */
    filter:
        drop-shadow(0 1px 1px rgba(80, 55, 0, 0.40))
        drop-shadow(0 2px 6px rgba(212, 175, 55, 0.15));
}

/* ── H4-H6: Sin efecto clip (tamaños pequeños lo degradan) ── */
h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
}

/* ── Párrafos globales ── */
p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;   /* 15px — óptimo para lectura */
    font-weight: 400;
    color: #222222;
    line-height: 1.85;
    max-width: 70ch;
}

.font-playfair {
    font-family: var(--font-serif) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: var(--nav-height);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

    .navbar-custom.scrolled {
        background: rgba(0, 0, 0, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        border-bottom-color: rgba(212, 175, 55, 0.15);
    }

.navbar-brand {
    font-family: var(--font-serif) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    letter-spacing: 4px;
    text-decoration: none;
    transition: var(--transition);
}

    .navbar-brand:hover {
        color: var(--gold) !important;
    }

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.90rem !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1.2rem;
        right: 1.2rem;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

        .nav-link:hover::after {
            transform: scaleX(1);
        }
        
    .nav-link.border-0:hover i {
        color: var(--gold) !important;
    }

.btn-gold {
    background: transparent;
    color: var(--gold) !important;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 0.875rem 2.25rem;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
}

    .btn-gold:hover {
        background: var(--gold);
        color: #ffffff !important;
        border-color: var(--gold);
        box-shadow: 0 8px 24px rgba(197, 168, 128, 0.25);






}








.content-wrapper {
    padding-top: var(--nav-height);
}

    /* Remove padding-top for hero (it's full screen) */
    .content-wrapper > main > .hero-zoom-section:first-child {
        margin-top: calc(-1 * var(--nav-height));
    }


/* =============================================
   HERO ZOOM SLIDER
   ============================================= */
.hero-zoom-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--black);
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.8s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Ken Burns background */
.hero-slide-bg {
    position: absolute;
    inset: -8%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    animation: kenBurns 22s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.18) translate(0, 0);
    }

    100% {
        transform: scale(1.0) translate(1%, 0.5%);
    }
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100% );
    z-index: 3;
    pointer-events: none;
}

/* Hero text content */
.hero-content {
    position: absolute;
    bottom: 14%;
    left: 8%;
    z-index: 10;
    color: var(--white);
}

.hero-text-block {
    transition: opacity 0.8s ease;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 500; /* Medium o Semibold para consistencia estilizada */
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em; /* Ligeramente más separado para "respirar" elegantemente */
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
}

/* Vertical bullets - RIGHT */
.hero-bullets {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.hero-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    outline: none;
}

    .hero-bullet.active {
        background: var(--white);
        border-color: var(--white);
        transform: scale(1.4);
    }

    .hero-bullet:hover {
        border-color: var(--gold);
        background: var(--gold);
    }

/* Social links - LEFT vertical */
.hero-social {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 18px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

    .hero-social a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        font-family: var(--font-sans);
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        transition: var(--transition);
    }

        .hero-social a:hover {
            color: var(--gold);
        }


/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 500; /* Medium elegante y más delgado */
    line-height: 1.15;
    letter-spacing: 0.08em; /* Elegancia sutil intermedio */
    text-transform: uppercase;
    /* Hereda el efecto metálico de h2 automáticamente si es un h2.
       Si se usa en otro elemento (div/span), forzar aquí: */
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    filter:
        drop-shadow(0 1px 1px rgba(80, 55, 0, 0.50))
        drop-shadow(0 3px 10px rgba(212, 175, 55, 0.22));
}

.section-desc {
    max-width: 760px;
    color: #666;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}


/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: #f9f8f6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.stats-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stats-label {
    font-family: var(--font-sans);
    font-size: 0.90rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin: 0;
}


/* =============================================
   POPULAR OFFERS SECTION (kept for CMS pages)
   ============================================= */
.offers-section {
    background: var(--white);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

    .offers-section .section-title {
        color: #111;
    }

.offer-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e4dc;
    transition: var(--transition);
}

    .offer-item:hover {
        border-bottom-color: var(--gold);
    }

        .offer-item:hover .offer-title {
            color: var(--gold);
        }

.offer-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0;
    transition: var(--transition);
}

.offer-desc {
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.offer-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 1rem;
}


/* =============================================
   DRINK MENU SECTION
   ============================================= */
.drink-menu-section {
    background: #f9f8f6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.drink-menu-title {
    color: #111;
}

.drink-menu-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
}

/* Main card */
.drink-menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.12);
    max-width: 860px;
    margin: 0 auto;
}

/* Columns */
.drink-col {
    position: relative;
}

.drink-col-left {
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.drink-col-inner {
    padding: 2.5rem 2.5rem 2rem;
}

/* Category badge */
.drink-category-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--black);
    background: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.drink-category-badge--alt {
    background: var(--dark);
    color: var(--gold);
}

/* Drink list */
.drink-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0ece4;
    transition: var(--transition);
    cursor: default;
}

    .drink-item:last-child {
        border-bottom: none;
    }

    .drink-item:hover .drink-name {
        color: var(--gold);
        padding-left: 4px;
    }

    .drink-item:hover .drink-dot {
        transform: scale(1.4);
        background: var(--gold);
    }

.drink-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.drink-dot--alt {
    background: #7b9e8a;
}

.drink-item:hover .drink-dot--alt {
    background: var(--gold);
}

.drink-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Prosecco banner */
.prosecco-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1e1a0e 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2rem 2.5rem;
}

.prosecco-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.prosecco-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
    animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.prosecco-label {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.25rem;
    line-height: 1.1;
}

.prosecco-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.85rem;
}

.prosecco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prosecco-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--black);
    background: var(--gold);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    white-space: nowrap;
    transition: var(--transition);
}

    .prosecco-tag:hover {
        background: var(--gold-light);
    }

/* Responsive */
@media (max-width: 767px) {
    .drink-col-left {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .drink-col-inner {
        padding: 2rem 1.5rem 1.5rem;
    }

    .prosecco-banner {
        padding: 1.5rem;
    }
}


/* =============================================
   SERVICES OVERVIEW SECTION
   ============================================= */
.services-overview-section {
    background: #f9f8f6;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.service-list-name {
    transition: var(--transition);
    cursor: default;
}

.service-list-name:hover {
    color: var(--gold) !important;
    padding-left: 3px;
}


/* =============================================
   CITA SECTION
   ============================================= */
.cita-section {
    background: var(--dark);    
    padding-bottom: 5rem !important;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background: var(--dark);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

    .testimonials-section .section-title {
        color: var(--white);
    }

.testimonial-card {
    padding: 2rem 1rem;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
    user-select: none;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 1.20rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
    margin: 0 1px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition);
}

    #testimonialCarousel .carousel-control-prev:hover,
    #testimonialCarousel .carousel-control-next:hover {
        background: var(--gold);
    }

#testimonialCarousel .carousel-control-prev {
    left: -60px;
}

#testimonialCarousel .carousel-control-next {
    right: -60px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer-custom {
    background-color: var(--black);
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('../img/footer-img.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-sans);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
    max-height: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-brand {
    font-family: var(--font-serif) !important;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 4px;
    }

.footer-contact li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

    .footer-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-size: 0.8rem;
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-social-icons a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
            transform: translateY(-2px);
        }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .navbar-custom {
        height: auto;
        padding: 0.75rem 0;
    }

    .content-wrapper {
        padding-top: 60px;
    }

    .hero-social {
        display: none;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        bottom: 12%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.97);
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-bullets {
        right: 14px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    #testimonialCarousel .carousel-control-prev {
        left: -10px;
    }

    #testimonialCarousel .carousel-control-next {
        right: -10px;
    }
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(var(--nav-height) + 2rem);
}

.login-ambient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.login-ambient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.login-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.login-form {
    margin-bottom: 1.5rem;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem 1rem 0.6rem;
    color: var(--white);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.form-control-custom::placeholder {
    color: transparent;
}

.form-label-custom {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: 0.8rem;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.validation-msg {
    margin-top: 5px;
    display: inline-block;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.custom-checkbox-input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    cursor: pointer;
}

.custom-checkbox-label {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.custom-checkbox-label:hover {
    color: var(--white);
}

.forgot-link {
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--white) !important;
}

.btn-login {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-login:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.register-section {
    text-align: center;
    margin-top: 2rem;
}

.register-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.register-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

.register-link:hover {
    color: var(--white) !important;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-divider span {
    padding: 0 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.btn-external {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-external:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
}

@media (max-width: 575px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
}

/* =============================================
   ADMIN DASHBOARD
   ============================================= */
.admin-dashboard-container {
    min-height: calc(100vh - var(--nav-height));
    background: var(--dark-2);
    position: relative;
    padding: 3rem 1.5rem;
    overflow: hidden;
    color: var(--white);
    margin-top: calc(-1 * var(--nav-height) + 80px); /* Adjust to compensate header layout */
    padding-top: calc(var(--nav-height) + 2rem);
    border-radius: 8px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.admin-ambient {
    position: absolute;
    top: -10%;
    left: 40%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.admin-header {
    position: relative;
    z-index: 2;
}

.admin-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.admin-subtitle {
    font-family: var(--font-sans);
    font-size: 1.10rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.admin-cards-row {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.admin-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.admin-stat-card:hover::before {
    background: var(--gold);
}

.admin-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.admin-stat-card:hover .admin-card-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.admin-card-content {
    flex-grow: 1;
}

.admin-card-label {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.admin-card-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.admin-card-action {
    width: 100%;
}

.btn-admin-manage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-admin-manage:hover {
    background: var(--gold);
    color: var(--black) !important;
    border-color: var(--gold);
}


/* =============================================
   HOME GALLERY — INFINITE MARQUEE
   ============================================= */

/* Outer mask that clips the scrolling track */
.gallery-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* Subtle fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* Inner track — flex row, wide enough to hold originals + duplicates */
.gallery-marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 12px;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

/* Pause on hover for accessibility */
.gallery-marquee-wrapper:hover .gallery-marquee-track {
    animation-play-state: paused;
}

/* Individual image card — square aspect ratio */
.gallery-marquee-item {
    flex: 0 0 auto;
    width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-marquee-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay text centered on each gallery image */
.gallery-marquee-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2); /* subtle dark scrim initially */
    opacity: 0.85; /* clearly noticeable from the beginning */
    transition: background 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-marquee-item:hover .gallery-marquee-overlay {
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.gallery-marquee-overlay span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Premium metallic gold gradient for the text */
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold); /* fallback for older browsers */
    /* Elegant shadow/depth for gold gradient */
    filter: 
        drop-shadow(0 1px 2px rgba(100, 75, 5, 0.65))
        drop-shadow(0 2px 6px rgba(212, 175, 55, 0.22));

    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.5); /* elegant gold border initially */
    border-radius: 4px;
    background-color: rgba(10, 10, 10, 0.55); /* semi-translucent premium dark backdrop */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 10px rgba(212, 175, 55, 0.08);
    
    transition: 
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        filter 0.4s ease;
}

.gallery-marquee-item:hover .gallery-marquee-overlay span {
    transform: scale(1.06);
    border-color: var(--gold-light); /* brighter gold border on hover */
    background-color: rgba(10, 10, 10, 0.7); /* slightly darker backdrop on hover */
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.45), 
        0 0 20px rgba(212, 175, 55, 0.3); /* beautiful gold glow */
    filter: 
        drop-shadow(0 2px 4px rgba(100, 75, 5, 0.85))
        drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

/* Keyframes: translate by exactly -50% so the duplicate seamlessly replaces the original */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }

    100% { transform: translateX(-50%); }
}

/* Responsive — smaller cards on mobile */
@media (max-width: 575px) {
    .gallery-marquee-item {
        width: 200px;
    }

    .gallery-marquee-track {
        gap: 8px;
        animation-duration: 20s;
    }
}


/* =============================================
   ELEGANT CTA SECTIONS (Refined Metallic Gold)
   ============================================= */

/* ── OPCIÓN A: LÍNEA ZEN INTERRUMPIDA ── */
.cta-zen-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5rem 1.5rem;
    overflow: hidden;
    background: var(--white);
}

.cta-zen-link {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 2.5rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--transition);
}

/* El texto de la reserva con el degradado de brillo central */
.cta-zen-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 1px rgba(80, 55, 0, 0.40)) 
            drop-shadow(0 2px 4px rgba(212, 175, 55, 0.15));
    transition: var(--transition);
    padding: 0 0.5rem;
}

/* Las líneas horizontales finas laterales */
.cta-zen-link::before,
.cta-zen-link::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: var(--gold-metallic-gradient);
    transition: var(--transition);
    opacity: 0.65;
}

/* Micro-animación premium al pasar el ratón */
.cta-zen-link:hover .cta-zen-text {
    filter: drop-shadow(0 1px 1px rgba(80, 55, 0, 0.55)) 
            drop-shadow(0 4px 10px rgba(212, 175, 55, 0.35));
    transform: scale(1.03);
}

.cta-zen-link:hover::before,
.cta-zen-link:hover::after {
    opacity: 1;
    height: 2px;
}


/* ── OPCIÓN B: ESTRUCTURA ORGÁNICA / CURVA DE SPA ── */
.cta-organic-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5rem 1.5rem;
    background: var(--white);
}

.cta-organic-wrapper {
    position: relative;
    padding: 2px; /* Ancho del contorno dorado */
    /* Silueta orgánica: forma de pétalo/hoja elegante y fluida */
    border-radius: 60px 20px 60px 20px / 20px 60px 20px 60px;
    background: var(--gold-metallic-gradient);
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cta-organic-inner {
    background: var(--white); /* Se camufla con el fondo del sitio */
    border-radius: 59px 19px 59px 19px / 19px 59px 19px 59px;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cta-organic-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition);
}

.cta-organic-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 1px rgba(80, 55, 0, 0.40)) 
            drop-shadow(0 2px 4px rgba(212, 175, 55, 0.15));
    transition: var(--transition);
}

/* Icono sutil del enlace */
.cta-organic-icon {
    font-size: 1.1rem;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: var(--transition);
    display: inline-block;
}

/* Efecto de deformación/movimiento orgánico del pétalo al pasar el ratón */
.cta-organic-wrapper:hover {
    transform: translateY(-3px) scale(1.02);
    /* Modificación fluida de las esquinas */
    border-radius: 20px 60px 20px 60px / 60px 20px 60px 20px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.18);
}

.cta-organic-wrapper:hover .cta-organic-inner {
    border-radius: 19px 59px 19px 59px / 59px 19px 59px 19px;
}

.cta-organic-wrapper:hover .cta-organic-text {
    filter: drop-shadow(0 1px 1px rgba(80, 55, 0, 0.55)) 
            drop-shadow(0 4px 10px rgba(212, 175, 55, 0.35));
}

.cta-organic-wrapper:hover .cta-organic-icon {
    transform: translateX(4px);
}

/* Responsividad extra para la forma del pétalo en móviles */
@media (max-width: 575px) {
    .cta-organic-inner {
        padding: 1.25rem 2.25rem;
    }
}


/* =============================================
   PREMIUM CTA FLOATING GOLD BANNER (CENEFA)
   ============================================= */
.cta-banner-wrapper {
    --gold-banner-dark: #644B05;    /* bronce oscuro extremo */
    --gold-banner-bronze: #A8891A;  /* oro medio-oscuro */
    --gold-banner-base: #D4AF37;    /* oro base satinado */
    --gold-banner-light: #FFF7D6;   /* destello champán/blanco central */
    --gold-banner-text: #1C1502;    /* marrón quemado ultra-oscuro */

    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 3rem 0 3rem 0; /* Espacio para que la curva cuelgue */
/*    background: var(--white);*/
    overflow: hidden;
}

.cta-banner-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

/* La franja delgada y recta a los lados */
.cta-banner-line {
    height: 16px; /* delgada y recta */
    flex-grow: 1;
    background: linear-gradient(
        to right,
        var(--gold-banner-dark) 0%,
        var(--gold-banner-bronze) 25%,
        var(--gold-banner-base) 40%,
        var(--gold-banner-light) 50%,
        var(--gold-banner-base) 60%,
        var(--gold-banner-bronze) 75%,
        var(--gold-banner-dark) 100%
    );
    background-attachment: fixed;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 1;
}

/* Añadimos un hilo de brillo superior e inferior en las líneas rectas */
.cta-banner-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.cta-banner-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

/* El arco central colgante */
.cta-banner-arch-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 68px;
    position: relative;
    text-decoration: none !important;
    z-index: 2;
    margin-top: 0; /* alineado al tope de las líneas laterales */
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.cta-banner-arch-bg {
    position: absolute;
    inset: 0;
    /* La curva cuelga hacia abajo suavemente */
    border-radius: 0 0 175px 175px / 0 0 68px 68px;
    background: linear-gradient(
        to right,
        var(--gold-banner-dark) 0%,
        var(--gold-banner-bronze) 25%,
        var(--gold-banner-base) 40%,
        var(--gold-banner-light) 50%,
        var(--gold-banner-base) 60%,
        var(--gold-banner-bronze) 75%,
        var(--gold-banner-dark) 100%
    );
    background-attachment: fixed;
    z-index: 1;
    transition: filter 0.4s ease;
}

/* Borde doble ultra-fino en la curva inferior */
.cta-banner-arch-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 175px 175px / 0 0 68px 68px;
    border-bottom: 2px solid rgba(255, 247, 214, 0.85); /* hilo dorado brillante superior */
    pointer-events: none;
    z-index: 2;
}

.cta-banner-arch-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 175px 175px / 0 0 68px 68px;
    border-bottom: 3.5px solid rgba(40, 30, 2, 0.45); /* sombra oscura inferior tridimensional */
    pointer-events: none;
    z-index: 2;
}

/* El texto de la reserva central */
.cta-banner-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 600; /* Semibold elegante */
    color: var(--gold-banner-text) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 3;
    position: relative;
    /* Grabado láser: sombra blanca desplazada 1px hacia abajo */
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.4s ease, letter-spacing 0.4s ease;
    margin-top: -4px; /* ajuste vertical para centrar en la cenefa colgante */
}

/* Micro-animaciones premium al pasar el ratón */
.cta-banner-arch-link:hover {
    transform: translateY(3px) scale(1.015);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.cta-banner-arch-link:hover .cta-banner-text {
    letter-spacing: 0.15em;
}

/* Responsividad para pantallas móviles y pequeñas */
@media (max-width: 575px) {
    .cta-banner-wrapper {
        padding: 2.5rem 0 5rem 0;
    }
    
    .cta-banner-line {
        height: 12px;
    }
    
    .cta-banner-arch-link {
        width: 290px;
        height: 58px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
    
    .cta-banner-arch-bg {
        border-radius: 0 0 145px 145px / 0 0 58px 58px;
    }
    
    .cta-banner-arch-bg::before {
        border-radius: 0 0 145px 145px / 0 0 58px 58px;
    }

    .cta-banner-arch-bg::after {
        border-radius: 0 0 145px 145px / 0 0 58px 58px;
    }
    
    .cta-banner-text {
        font-size: 1rem;
        margin-top: -3px;
    }
}


/* =============================================
   SECCIÓN SUCURSALES (BRANCHES)
   ============================================= */
.branches-section {
    background: var(--white);
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* Mosaico Minimal Art con Enmarcado Flotante 3D */
.branches-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); /* minmax(0, 1fr) previene que la imagen expanda la fila */
    gap: 20px; /* gap generoso y elegante */
    height: 500px;
    width: 100%;
    background: transparent; /* canvas limpio */
    position: relative;
    padding: 12px; /* Espacio para que el marco flotante no se corte */
}

/* Contenedores del mosaico */
.mosaic-item {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 0; /* Crucial para evitar que el contenido desborde el grid */
    height: 100%;
}

/* Imagen Principal (Lado Izquierdo) */
.mosaic-main {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Imagen Secundaria Superior (Derecha) */
.mosaic-sub-1 {
    grid-column: 2;
    grid-row: 1;
}

/* Imagen Secundaria Inferior (Derecha) */
.mosaic-sub-2 {
    grid-column: 2;
    grid-row: 2;
}

/* Wrapper de las imágenes para control de bordes y zoom sin overflow */
.mosaic-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px; /* esquinas suavizadas muy sutiles de galería de arte */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Zoom interno sutil en hover */
.mosaic-item:hover .mosaic-img {
    transform: scale(1.04);
}

/* DETALLE DE LUJO: Enmarcado Flotante 3D en la Imagen Principal */
.mosaic-main::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    /* Efecto de borde con brillo metálico y reflejo dorado */
    background-image: linear-gradient(#111111, #111111), var(--gold-metallic-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Micro-interacción interactiva para el marco flotante */
.mosaic-main:hover::before {
    transform: translate(-3px, -3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25), 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Tarjetas de Sucursales */
.branch-card {
    background: var(--dark); /* Fondo oscuro integrado (#111111) */
    border: 1px solid var(--gold); /* Borde ultrafino 1px dorado metálico (#D4AF37) */
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center; /* Todo el texto perfectamente centrado */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    background: #151515;
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Sweep shimmer overlay effect on hover */
.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(212, 175, 55, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    pointer-events: none;
}

.branch-card:hover::before {
    left: 125%;
}

/* Nombre de la Sede y Teléfono: destacada en color dorado (#D4AF37) */
.branch-name {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 2px;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 1px rgba(80, 55, 0, 0.45));
}

.branch-phone {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold) !important;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.branch-phone a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: var(--transition);
}

.branch-phone a:hover {
    color: var(--gold-light) !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

/* Dirección: en tamaño más pequeño y color gris claro/blanco sutil */
.branch-address {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65); /* blanco sutil/gris claro */
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 45ch;
    transition: var(--transition);
}

.branch-card:hover .branch-address {
    color: rgba(255, 255, 255, 0.85);
}

/* Botones de acción alineados horizontalmente al fondo */
.branch-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    width: 100%;
}

.btn-services-link {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

.btn-services-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.btn-services-link:hover {
    color: var(--gold) !important;
}

.btn-services-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsividad para móviles y tabletas */
@media (max-width: 991px) {
    .branches-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .branches-mosaic {
        height: 420px;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .branches-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 180px 180px; /* Adaptación asimétrica fluida en móviles */
        height: auto;
        gap: 16px;
    }
    
    .mosaic-main {
        grid-column: 1;
        grid-row: 1;
    }
    
    .mosaic-sub-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .mosaic-sub-2 {
        grid-column: 1;
        grid-row: 3;
    }

    .branch-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .branches-mosaic {
        grid-template-rows: 220px 140px 140px;
        gap: 12px;
        padding: 8px;
    }
    
    .mosaic-main::before {
        top: -8px;
        left: -8px;
    }

    .branch-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-services-link::after {
        display: none;
    }
}

/* =============================================
   CONTACT PAGE - PREMIUM BRANCH CARDS
   ============================================= */
.contact-branch-card {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    /* Ultra-thin metallic gold border effect */
    border: 1px solid transparent;
    background-image: linear-gradient(#0a0a0a, #0a0a0a), var(--gold-metallic-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-branch-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.15));
}

.contact-branch-info {
    font-family: var(--font-sans);
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: auto;
    /* Efecto borde sutil para el iframe */
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
    background: #111;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.branch-phone a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: var(--transition);
}

.branch-phone a:hover {
    color: var(--gold-light) !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

/* Dirección: en tamaño más pequeño y color gris claro/blanco sutil */
.branch-address {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65); /* blanco sutil/gris claro */
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 45ch;
    transition: var(--transition);
}

.branch-card:hover .branch-address {
    color: rgba(255, 255, 255, 0.85);
}

/* Botones de acción alineados horizontalmente al fondo */
.branch-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    width: 100%;
}

.btn-services-link {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

.btn-services-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.btn-services-link:hover {
    color: var(--gold) !important;
}

.btn-services-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsividad para móviles y tabletas */
@media (max-width: 991px) {
    .branches-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .branches-mosaic {
        height: 420px;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .branches-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 180px 180px; /* Adaptación asimétrica fluida en móviles */
        height: auto;
        gap: 16px;
    }
    
    .mosaic-main {
        grid-column: 1;
        grid-row: 1;
    }
    
    .mosaic-sub-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .mosaic-sub-2 {
        grid-column: 1;
        grid-row: 3;
    }

    .branch-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .branches-mosaic {
        grid-template-rows: 220px 140px 140px;
        gap: 12px;
        padding: 8px;
    }
    
    .mosaic-main::before {
        top: -8px;
        left: -8px;
    }

    .branch-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-services-link::after {
        display: none;
    }
}

/* =============================================
   CONTACT PAGE - PREMIUM BRANCH CARDS
   ============================================= */
.contact-branch-card {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    /* Ultra-thin metallic gold border effect */
    border: 1px solid transparent;
    background-image: linear-gradient(#0a0a0a, #0a0a0a), var(--gold-metallic-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-branch-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gold-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.15));
}

.contact-branch-info {
    font-family: var(--font-sans);
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: auto;
    /* Efecto borde sutil para el iframe */
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
    background: #111;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Filtro para integrar el mapa al diseño dark-luxury */
    filter: grayscale(100%) invert(90%) contrast(85%) opacity(0.8);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-map-container:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%) opacity(1);
}

/* =========================================
   MODAL PUBLICITARIO PREMIUM (NEGRO Y DORADO)
   ========================================= */

/* 1. Fondo superpuesto (Overlay) */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Negro profundo semi-transparente */
    backdrop-filter: blur(4px); /* Efecto de desenfoque premium (Glassmorphism sutil) */
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Transición Fade-in */
}

/* Estado activo para mostrar el modal */
.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 2. Contenedor principal del modal */
.promo-modal-content {
    position: relative;
    width: 90%;
    max-width: 550px; /* Tamaño máximo para Desktop */
    background-color: #0a0a0a; /* Fondo negro profundo */
    border: 2px solid #D4AF37; /* COLOR CLAVE: Borde dorado */
    border-radius: 8px; /* Bordes ligeramente redondeados */
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15), 0 0 20px rgba(0,0,0,1); /* Sombra con destello dorado sutil */
    overflow: hidden;
    /* Animación de entrada (Pop suave) */
    transform: translateY(20px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Al estar activo, la caja vuelve a su posición original */
.promo-modal-overlay.active .promo-modal-content {
    transform: translateY(0) scale(1);
}

/* 3. Botón de Cerrar (X) */
.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(10, 10, 10, 0.7); /* Fondo oscuro translúcido para resaltar la X */
    border: 1px solid #D4AF37; /* COLOR CLAVE: Dorado */
    border-radius: 50%; /* Botón circular */
    color: #D4AF37; /* COLOR CLAVE: Dorado */
    font-size: 24px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Efecto al pasar el mouse por el botón cerrar */
.promo-modal-close:hover {
    background: #D4AF37;
    color: #0a0a0a; /* Letra negra */
    transform: rotate(90deg); /* Animación elegante de giro */
}

/* 4. Estilos de la imagen (Mobile-First) */
.promo-modal-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 5. Footer de Direcciones del Modal */
.promo-modal-locations {
    display: flex;
    background-color: #111111;
    border-top: 1px solid rgba(212, 175, 55, 0.5); /* Fina línea dorada */
    padding: 1.2rem 0;
}

.promo-location-col {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.promo-location-title {
    font-family: var(--font-serif);
    color: #D4AF37; /* Dorado */
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.promo-location-sub {
    font-family: var(--font-sans);
    color: #b3b3b3; /* Gris/Blanco sutil */
    font-size: 0.8rem;
   /* margin-bottom: 0.5rem;*/
}

.promo-location-phone {
    font-family: var(--font-sans);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-location-phone i {
    color: #D4AF37;
    font-size: 0.8rem;
    margin-right: 5px;
}

.promo-location-phone:hover {
    color: #D4AF37;
}

.promo-location-divider {
    width: 1px;
    background-color: rgba(212, 175, 55, 0.3); /* Línea dorada sutil vertical */
    margin: 0.5rem 0;
}

/* 6. Notas del Modal */
.promo-modal-notes {
    background-color: #0a0a0a;
    padding: 1.5rem;
}

.promo-modal-notes p {
    font-family: var(--font-sans);
    color: #888888;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-align: center;
}

.promo-modal-notes p:last-of-type {
    margin-bottom: 0;
}

/* =========================================
   SECCIÓN DE POLÍTICAS (NEGRO Y DORADO)
   ========================================= */

.policies-section {
    padding: 5rem 0;
    background-color: transparent; 
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.policy-card {
    background-color: #111111;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.08);
}

.policy-icon {
    font-size: 2.8rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.policy-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #B8941F, #F0DFA0, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.policy-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    font-weight: 300;
}

.hover-gold { transition: color 0.3s ease; }
.hover-gold:hover { color: var(--gold) !important; }
