/* ============================================================
   MOUNTAIN CATEDRAL — Escuela de Ski & Snowboard Bariloche
   Main Stylesheet · Bootstrap 5 · 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --red:        #ff1f00;
    --red-dark:   #cc1800;
    --black:      #000000;
    --white:      #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid:   #e8e8e8;
    --gray-dark:  #2a2a2a;
    --font:       'Montserrat', sans-serif;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --t:          0.3s;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.05;
    color: var(--red);
    text-transform: uppercase;
}
p { color: var(--black); line-height: 1.75; }
a { transition: color var(--t) var(--ease), background var(--t) var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITY ===== */
.text-red   { color: var(--red) !important; }
.bg-red     { background-color: var(--red) !important; }
.ls-4       { letter-spacing: 0.25em; }
.ls-2       { letter-spacing: 0.12em; }
.fw-black   { font-weight: 900 !important; }
.uppercase  { text-transform: uppercase !important; }

.section-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    line-height: 1.0;
    margin-bottom: 14px;
}
.section-lead {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 40px;
}
.divider-red {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn-mc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 2px solid var(--red);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    border-radius: 0;
    line-height: 1;
}
.btn-mc:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-mc-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 34px;
    border: 2px solid rgba(255,255,255,0.7);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    border-radius: 0;
}
.btn-mc-outline:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.btn-mc-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 2px solid var(--black);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    border-radius: 0;
}
.btn-mc-dark:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: transparent;
    padding: 18px 0;
    transition: background var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
#mainNav.scrolled {
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-logo-wrap { display: flex; align-items: center; }
#mainNav .navbar-brand img { height: 54px; transition: height var(--t) var(--ease); }
#mainNav.scrolled .navbar-brand img { height: 44px; }

.logo-white { display: block; }
.logo-color  { display: none; }
#mainNav.scrolled .logo-white { display: none; }
#mainNav.scrolled .logo-color  { display: block; }

#mainNav .nav-link {
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 8px !important;
    position: relative;
    white-space: nowrap;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 8px; right: 8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link:hover { color: var(--white); }
#mainNav.scrolled .nav-link { color: var(--black); }
#mainNav.scrolled .nav-link:hover { color: var(--red); }

/* CTA nav item */
#mainNav .nav-link.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 7px 14px !important;
    margin-left: 6px;
}
#mainNav .nav-link.nav-cta::after { display: none; }
#mainNav .nav-link.nav-cta:hover { background: var(--black); }

/* Toggler */
#mainNav .navbar-toggler {
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 0;
    padding: 6px 10px;
}
#mainNav.scrolled .navbar-toggler { border-color: var(--black); }
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.9)' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: rgba(0,0,0,0.97);
        padding: 24px 20px;
        margin-top: 8px;
    }
    #mainNav .nav-link {
        color: rgba(255,255,255,0.85) !important;
        padding: 11px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 0.75rem;
    }
    #mainNav .nav-link.nav-cta {
        background: transparent;
        color: var(--red) !important;
        margin-left: 0;
        padding: 11px 0 !important;
    }
    #mainNav .nav-link::after { display: none; }
}

/* ===== HERO SLIDER ===== */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
#heroCarousel,
#heroCarousel .carousel-inner,
.hero-slide {
    height: 100vh;
}
.hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.08) 100%
    );
}

/* Hero text — positioned over all slides */
.hero-text-wrap {
    position: absolute;
    bottom: 20%;
    left: 8%;
    z-index: 10;
    max-width: 750px;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.hero-eyebrow-bar {
    width: 3px;
    height: 44px;
    background: var(--red);
    flex-shrink: 0;
}
.hero-eyebrow-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 7rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
}
.hero-cta-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--red);
    padding: 11px 24px 11px 20px;
    position: relative;
    overflow: hidden;
}
.hero-cta-badge::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: rgba(0,0,0,0.18);
}
.hero-cta-main {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}
.hero-cta-sub {
    color: rgba(255,255,255,0.82);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* VISA Banner */
.visa-banner {
    position: absolute;
    top: 88px;
    right: 28px;
    z-index: 200;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    pointer-events: none;
}
.visa-banner img { max-height: 46px; width: auto; }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    transition: all var(--t) var(--ease);
}
.carousel-control-prev { left: 28px; }
.carousel-control-next { right: 28px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--red);
    border-color: var(--red);
}
.carousel-indicators {
    margin-bottom: 28px;
}
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    margin: 0 4px;
    transition: all 0.35s var(--ease);
}
.carousel-indicators .active {
    background: var(--red);
    width: 28px;
    border-radius: 4px;
}

/* ===== QUICK LINKS BAR (3 red buttons) ===== */
.quick-links-bar { overflow: hidden; }
.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 0 32px;
    height: 72px;
    border-right: 1px solid rgba(255,255,255,0.18);
    position: relative;
    overflow: hidden;
    transition: color var(--t) var(--ease);
}
.quick-link-btn:last-child { border-right: none; }
.quick-link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s var(--ease);
}
.quick-link-btn:hover::before { transform: scaleX(1); }
.quick-link-btn:hover { color: var(--white); }
.qlb-icon {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 28px;
    opacity: 0.85;
}
.qlb-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 96px 0;
    background: var(--white);
}
.product-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    display: block;
    text-decoration: none;
}
.product-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s var(--ease);
}
.product-card:hover .product-card-bg { transform: scale(1.07); }
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.05) 100%
    );
    transition: background 0.4s var(--ease);
}
.product-card:hover .product-card-overlay {
    background: linear-gradient(to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.4) 55%,
        rgba(0,0,0,0.12) 100%
    );
}
.product-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 26px;
    z-index: 2;
}
.product-card-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.product-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}
.product-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.product-card:hover .product-card-desc { max-height: 80px; opacity: 1; }
.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card:hover .product-card-cta { opacity: 1; transform: translateY(0); }
.product-card-cta i { transition: transform var(--t) var(--ease); }
.product-card:hover .product-card-cta i { transform: translateX(4px); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--red);
    padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
    margin: 0 auto;
    display: none;
}
@media (min-width: 768px) { .stat-divider { display: block; } }

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 96px 0;
    background: var(--gray-light);
}
.contact-info-wrap {
    padding-right: 40px;
}
.contact-brand {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.contact-icon-box {
    width: 40px;
    height: 40px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.82rem;
}
.contact-item-content {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #333;
    padding-top: 8px;
}
.contact-item-content a {
    color: #333;
    text-decoration: none;
}
.contact-item-content a:hover { color: var(--red); }
.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}
.contact-social-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--t) var(--ease);
}
.contact-social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}
.map-wrap {
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}
.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.map-wrap:hover img { transform: scale(1.03); }

/* ===== VIDEO PARALLAX ===== */
.video-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.video-section-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}
.play-btn-circle {
    width: 88px;
    height: 88px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    margin: 0 auto 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    transition: all var(--t) var(--ease);
    text-decoration: none;
    padding-left: 4px; /* optical center for play icon */
}
.play-btn-circle:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 0 50px rgba(255,31,0,0.55);
}
.video-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
}
.video-headline {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 10px;
}
.video-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Video Modal */
#videoModal .modal-content {
    background: var(--black);
    border: none;
    border-radius: 0;
}
#videoModal .modal-header {
    border: none;
    padding: 10px 12px 0;
}
#videoModal .btn-close {
    filter: invert(1);
    opacity: 0.7;
}
.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 80px 0;
    background: var(--white);
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}
.insta-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,31,0,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { color: var(--white); font-size: 1.6rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.6);
}
.footer-logo img { height: 64px; margin-bottom: 18px; }
.footer-tagline {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 240px;
    margin-bottom: 24px;
}
.footer-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nav-link {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all var(--t) var(--ease);
}
.footer-nav-link:hover { color: var(--red); padding-left: 6px; }
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-row i { color: var(--red); font-size: 0.82rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row span,
.footer-contact-row a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    text-decoration: none;
}
.footer-contact-row a:hover { color: var(--red); }
.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.footer-social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--t) var(--ease);
}
.footer-social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-bottom {
    margin-top: 48px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    margin: 0;
    text-align: center;
}
.footer-bottom a { color: var(--red); text-decoration: none; }

/* ===== FLOATING BUTTONS ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.38);
    animation: waPulse 2.6s infinite;
    transition: all var(--t) var(--ease);
}
.wa-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    animation: none;
}
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 96px;
    right: 30px;
    z-index: 1039;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t) var(--ease);
    outline: none;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--black); transform: translateY(-3px); }

/* ===== INNER HERO (all inner pages) ===== */
.inner-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    padding-top: 80px;
}
.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.08) 100%
    );
}
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.inner-hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 14px;
}
.breadcrumb-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb-row a {
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}
.breadcrumb-row a:hover { color: var(--red); }
.breadcrumb-row .sep { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.breadcrumb-row .current {
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== INNER CONTENT ===== */
.inner-content { padding: 88px 0; }
.inner-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.05;
}
.inner-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 36px;
    margin-bottom: 12px;
}
.inner-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 24px;
    margin-bottom: 8px;
}
.inner-content p {
    font-size: 0.93rem;
    line-height: 1.82;
    color: #3a3a3a;
    margin-bottom: 18px;
}
.inner-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}
.inner-content ul li {
    padding: 9px 0 9px 22px;
    position: relative;
    font-size: 0.9rem;
    color: #3a3a3a;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}
.inner-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 0;
}

/* Sidebar */
.inner-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-block {
    background: var(--black);
    padding: 32px 28px;
    margin-bottom: 16px;
}
.sidebar-block-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.sidebar-info-row i { color: var(--red); font-size: 0.8rem; margin-top: 1px; flex-shrink: 0; }
.sidebar-info-row span,
.sidebar-info-row a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    text-decoration: none;
}
.sidebar-info-row a:hover { color: var(--red); }
.sidebar-cta {
    display: block;
    width: 100%;
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 24px;
    transition: all var(--t) var(--ease);
    border: 2px solid var(--red);
}
.sidebar-cta:hover { background: transparent; color: var(--red); }
.sidebar-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
    transition: all var(--t) var(--ease);
}
.sidebar-cta-wa:hover { background: #128C7E; color: var(--white); }

/* ===== SCHEDULE TABLE ===== */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 0.88rem;
}
.schedule-table thead th {
    background: var(--black);
    color: var(--white);
    padding: 13px 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
}
.schedule-table thead th:first-child { color: var(--red); }
.schedule-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
    color: #3a3a3a;
    line-height: 1.5;
}
.schedule-table tbody tr:hover td { background: var(--gray-light); }
.schedule-table .price-cell { font-weight: 700; color: var(--red); }

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--gray-light);
    padding: 36px 28px;
    height: 100%;
    transition: all var(--t) var(--ease);
    border-top: 4px solid transparent;
    position: relative;
}
.pricing-card:hover,
.pricing-card.featured {
    border-top-color: var(--red);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pricing-card.featured { background: var(--black); }
.pricing-card-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
}
.pricing-card-name {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    line-height: 1;
}
.pricing-card.featured .pricing-card-name { color: var(--white); }
.pricing-card-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
.pricing-card.featured .pricing-card-desc { color: rgba(255,255,255,0.6); }
.pricing-card ul { padding: 0; list-style: none; margin: 0; }
.pricing-card ul li {
    font-size: 0.82rem;
    color: #444;
    padding: 7px 0 7px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.pricing-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.75rem;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.06); }
.pricing-card.featured ul li::before { color: var(--red); }

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: 88px 0; }
.faq-item {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0 !important;
    background: transparent;
}
.faq-btn {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black);
    background: transparent !important;
    padding: 22px 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-btn:not(.collapsed) { color: var(--red); }
/* Ocultar la flecha por defecto de Bootstrap y usar solo el signo + / − */
.faq-btn.accordion-button::after {
    background-image: none !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--red);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-btn.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none !important;
}
.faq-body {
    padding: 0 0 24px;
    font-size: 0.88rem;
    line-height: 1.78;
    color: #555;
}

/* ===== LIGHTBOX ===== */
#lightboxModal .modal-content {
    background: var(--black);
    border: none;
    border-radius: 0;
}
#lightboxModal .modal-header {
    border: none;
    padding: 10px 12px 0;
    position: absolute;
    top: 0; right: 0;
    z-index: 10;
}
#lightboxModal .modal-body {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
#lightboxModal #lightboxImg {
    max-height: 82vh;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* ===== GALLERY ===== */
.gallery-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.gallery-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}
.gallery-thumb:hover img { transform: scale(1.1); }
.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,31,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.gallery-thumb-overlay i { color: var(--white); font-size: 1.6rem; }

/* ===== FORM ===== */
.mc-form .form-control,
.mc-form .form-select {
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font);
    font-size: 0.85rem;
    padding: 13px 18px;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--t) var(--ease);
}
.mc-form .form-control:focus,
.mc-form .form-select:focus {
    border-color: var(--red);
    box-shadow: none;
    outline: none;
}
.mc-form .form-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 7px;
}
.mc-form textarea.form-control { resize: vertical; min-height: 130px; }

/* ===== INFO BOXES ===== */
.info-box {
    border-left: 4px solid var(--red);
    background: var(--gray-light);
    padding: 20px 24px;
    margin-bottom: 24px;
}
.info-box p { margin: 0; font-size: 0.88rem; color: #444; }
.info-box strong { color: var(--black); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-text-wrap { left: 6%; }
    .quick-link-btn { padding: 0 22px; }
}
@media (max-width: 991.98px) {
    .hero-text-wrap { left: 5%; right: 5%; bottom: 24%; }
    .visa-banner { top: 76px; right: 14px; }
    .visa-banner img { max-height: 36px; }
    .product-card { height: 400px; }
    .contact-info-wrap { padding-right: 0; margin-bottom: 40px; }
    .map-wrap { min-height: 340px; }
    .inner-hero { height: 52vh; min-height: 320px; }
    .inner-content { padding: 60px 0; }
    .inner-sidebar { position: static; margin-top: 40px; }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
    .video-section { background-attachment: scroll; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.8rem); }
    .quick-link-btn { height: auto; padding: 18px 18px; }
    .qlb-text { font-size: 0.67rem; letter-spacing: 0.14em; }
    .products-section { padding: 60px 0; }
    .stats-bar { padding: 36px 0; }
    .stat-number { font-size: 2.2rem; }
    .contact-section { padding: 60px 0; }
    .instagram-section { padding: 60px 0; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid-wrap { grid-template-columns: repeat(2, 1fr); }
    .faq-section { padding: 60px 0; }
}
@media (max-width: 575.98px) {
    .visa-banner { display: none; }
    .hero-text-wrap { bottom: 20%; }
    .quick-link-btn { justify-content: center; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
