/* ============================================
   CORTIJO MIRACIELO - ESTILOS PRINCIPALES
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #C8A96E;
    --color-primary-light: #D4BC8A;
    --color-primary-dark: #9A7C46;
    --color-secondary: #E8E4DC;
    --color-secondary-light: #FFFFFF;

    /* Crepúsculo en la Sierra - Luxury Dark basado en logo-final.png */
    --color-bg-cream: #0B1120;      /* Azul Noche exacto del logo */
    --color-bg-white: #0B1120;      /* Coherencia en fondos principales */
    --color-bg-dark: #050810;       /* Sombra profunda */
    --color-bg-darker: #010409;     /* Casi negro */

    --color-text: #E8E4DC;          /* Blanco crema suave */
    --color-text-light: #8E9BB0;    /* Gris azulado suave */
    --color-text-white: #FFFFFF;    
    --color-text-cream: #E8E4DC;
    --color-border: rgba(200, 169, 110, 0.2); /* Dorado del logo con transparencia */
    --color-whatsapp: #25D366;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --container-max: 1200px;
    --container-wide: 1400px;
    --section-padding: 100px;
    --border-radius: 16px;
    --border-radius-sm: 8px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.24);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg-cream);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.3;
}

button, input, select, textarea {
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Sections --- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-cream { background: var(--color-bg-cream); }
.section-white { background: var(--color-bg-white); }
.section-dark { background: var(--color-bg-dark); }

.section-center { text-align: center; margin-bottom: 60px; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-label-light { color: var(--color-secondary); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.9) contrast(1.1);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-map:hover iframe {
    filter: grayscale(0) invert(0) hue-rotate(0deg) brightness(1) contrast(1);
}

.reveal-cinematic {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.section-title-light { color: var(--color-text-white); }

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-hero-primary {
    background: #C8A96E; /* Logo gold */
    color: #0B1120; /* Logo deep blue */
    border-color: #C8A96E;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: #D8B97E;
    border-color: #D8B97E;
    color: #0B1120;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 169, 110, 0.3);
}

.btn-hero-outline {
    background: rgba(11, 17, 32, 0.5); /* Deep blue translucent */
    color: #C8A96E; /* Logo gold */
    border-color: #C8A96E;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-hero-outline:hover {
    background: rgba(11, 17, 32, 0.8);
    color: #C8A96E;
    border-color: #C8A96E;
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

/* --- Custom Scrollbar & Selection --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary-light);
}

::selection {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.navbar.scrolled {
    background: rgba(13, 20, 28, 0.6); /* var(--color-bg-cream) con transparencia */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- FAQ Styles --- */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #4A5568; /* Darker grey-blue for better contrast on white */
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- Mobile Action Bar --- */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 20, 28, 0.9); /* var(--color-bg-cream) */
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 1500;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mobile-action-bar { display: flex; }
    body { padding-bottom: 70px; } /* Space for action bar */
}

.mobile-action-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--color-secondary);
    color: var(--color-bg-dark);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}


.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.navbar.scrolled .nav-logo { 
    color: #FFFFFF !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

@media (min-width: 769px) {
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-cream);
    opacity: 0.8;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--color-text-white); opacity: 0.7; }
.nav-link:hover { opacity: 1; color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link:hover { opacity: 1; color: var(--color-secondary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--color-secondary) !important; opacity: 1 !important; font-weight: 600; }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text-white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span { background: var(--color-text-white); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 20, 28, 0.4) 0%,
        rgba(13, 20, 28, 0.2) 40%,
        rgba(10, 17, 24, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-text-white);
    padding: 0 24px;
    max-width: 1200px;
    margin-top: -120px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-cream);
    opacity: 0.8 !important; /* Forces the opacity visually similar to menu */
    margin-bottom: 16px;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    min-height: 1.2em;
    color: #E8E4DC !important;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: -1px;
}

.typewriter-img-wrapper {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid var(--color-secondary);
    animation: blink-caret 0.75s step-end infinite;
    vertical-align: middle;
    width: 0; /* Animated by JS */
    max-width: 100%;
    padding-right: 5px; /* Space for the cursor/shadow */
}

.hero-main-logo {
    height: clamp(100px, 14vw, 200px);
    width: auto;
    object-fit: contain;
    display: block;
    max-width: none;
    opacity: 0.85; 
    filter: drop-shadow(0 0 20px rgba(200, 169, 110, 0.15)); /* Brillo sutil dorado */
    animation: heroLogoFloat 6s ease-in-out infinite; /* Movimiento orgánico */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease, opacity 0.5s ease;
}

.hero-main-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 35px rgba(200, 169, 110, 0.4)); /* El brillo aumenta al acercar el ratón */
    transform: scale(1.02);
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-secondary); }
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: #C8A96E !important;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.7);
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.scroll-indicator:hover { color: var(--color-secondary); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SPLIT LAYOUT (Historia)
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-text .section-title { margin-bottom: 24px; }

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.split-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.gallery-stack {
    position: relative;
    height: 500px;
}

.gallery-img {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-img-1 {
    width: 75%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-img-2 {
    width: 55%;
    height: 200px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--color-bg-cream);
}

.gallery-img-3 {
    width: 45%;
    height: 180px;
    top: 50%;
    left: 60%;
    z-index: 3;
    border: 4px solid var(--color-bg-cream);
}

.gallery-img:hover {
    transform: scale(1.03);
    z-index: 10;
}

/* ============================================
   MASONRY GALLERY
   ============================================ */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.masonry-item img,
.masonry-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masonry-item:hover img,
.masonry-item:hover video {
    transform: scale(1.15);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.masonry-tall { grid-row: span 2; aspect-ratio: auto; }
.masonry-wide { grid-column: span 2; }

/* ============================================
   GALLERY FILTERS
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--color-secondary);
    background: transparent;
    color: var(--color-text-white);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 30px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
}

/* ============================================
   EXPERIENCES GRID
   ============================================ */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.exp-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.exp-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exp-card:hover .exp-card-img img {
    transform: scale(1.08);
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.3), rgba(0,0,0,0.2));
}

.exp-card-content {
    padding: 24px;
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.exp-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.exp-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   FEATURES GRID (Servicios)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--border-radius);
    background: var(--color-bg-cream);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--color-bg-white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-primary-light);
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 20, 28, 0.85) 0%, rgba(17, 26, 36, 0.7) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ============================================
   INSTAGRAM GRID
   ============================================ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 80, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.insta-item:hover .insta-overlay { opacity: 1; }

/* ============================================
   BOOKING / RESERVAS
   ============================================ */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-widget,
.booking-contact {
    background: var(--color-bg-cream);
    border-radius: var(--border-radius);
    padding: 40px;
}

.booking-widget h3,
.booking-contact h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-booking {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--border-radius);
    background: var(--color-bg-white);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-whatsapp .contact-icon { background: var(--color-whatsapp); color: white; }
.contact-phone .contact-icon { background: #E8F4FD; color: #1A73E8; }
.contact-email .contact-icon { background: #FFF3E0; color: #E65100; }

.contact-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-text span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ============================================
   ESCAPADA RURAL WIDGETS
   ============================================ */
.escapada-widget-container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}

.escapada-title {
    color: var(--color-primary);
    margin-bottom: 25px;
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.5rem;
}

.escapada-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.escapada-calendar-item {
    background: #FFFFFF;
    width: 240px;
    flex-shrink: 0;
    margin: 0 auto;
}

.escapada-rates-item {
    background: #FFFFFF;
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.escapada-rates-scroll {
    min-width: 572px;
}

.escapada-source {
    font: normal 10px arial;
    color: #353535;
    text-align: right;
    margin-top: 8px;
}

.escapada-source a {
    text-decoration: none;
    color: #353535;
}

/* ============================================
   ZEN MODE BUTTON
   ============================================ */
.zen-mode-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 20, 28, 0.7); /* var(--color-bg-cream) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.zen-mode-btn:hover {
    background: rgba(13, 20, 28, 0.9);
    transform: scale(1.1);
}

.zen-tooltip {
    position: absolute;
    left: 60px;
    background: rgba(11, 17, 32, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zen-mode-btn:hover .zen-tooltip {
    opacity: 1;
    left: 65px;
}

/* ============================================
   DESKTOP STICKY BAR
   ============================================ */
.desktop-sticky-bar {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(13, 20, 28, 0.85); /* var(--color-bg-cream) */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    z-index: 998;
    transition: top 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
}

.desktop-sticky-bar.visible {
    top: 90px;
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sticky-bar-content p {
    color: var(--color-text-cream);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-sticky-bar .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.location-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 36px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.location-address {
    color: var(--color-text-cream);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.location-coords {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(200, 169, 110, 0.15);
    border-radius: 20px;
    color: var(--color-secondary);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.location-directions h4 {
    font-family: var(--font-display);
    color: var(--color-text-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.location-directions p {
    color: var(--color-text-cream);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.location-directions strong {
    color: var(--color-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-darker);
    color: var(--color-text-cream);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-cream);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal a:hover { color: var(--color-secondary); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 104px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    transform: scale(0.9);
    transition: var(--transition-slow);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 8px 16px;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--color-secondary); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ============================================
   CURSOR CUSTOM
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(200, 169, 110, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor-dot.visible,
.cursor-ring.visible {
    opacity: 1;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-secondary);
}

body:hover .cursor-dot,
body:hover .cursor-ring {
    opacity: 1;
}

@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ============================================
   HERO ENHANCED
   ============================================ */
.hero {
    overflow: hidden;
}

.hero-img-ken {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(200, 169, 110, 0.5);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.15);
}

.hero-content {
    z-index: 5;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 15px; /* Reduced margin to sit closer to subtitle */
    opacity: 0;
    transform: translateY(20px);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary); /* Gold/Primary color */
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-cream);
    font-weight: 600;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 169, 110, 0.3);
}

/* Glow button effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ============================================
   CUSTOM SECTION BACKGROUNDS (CREPÚSCULO SIERRA)
   ============================================ */
#historia, #galeria, #experiencias, #servicios, #fotos,
#video, #instagram, #reservas, #ubicacion {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-cream) 100%);
}

/* Remove old dividers for these sections to ensure smooth transition */
#historia::before, #galeria::before, #experiencias::before,
#servicios::before, #reservas::before, #ubicacion::before {
    display: none !important;
}

/* ============================================
   PARALLAX ENHANCED
   ============================================ */
.parallax-section {
    overflow: hidden;
}

.parallax-bg {
    will-change: transform;
}

/* Section dividers with gradient */
.section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.section-cream::before {
    background: linear-gradient(to bottom, var(--color-bg-white), transparent);
}

.section-white::before {
    background: linear-gradient(to bottom, var(--color-bg-cream), transparent);
}

/* ============================================
   3D TILT CARDS (Experiencias)
   ============================================ */
.exp-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
}

.exp-card-img {
    position: relative;
    overflow: hidden;
}

.exp-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,169,110,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exp-card:hover .exp-card-img::after {
    opacity: 1;
}

/* ============================================
   MASONRY GALLERY ENHANCED
   ============================================ */
.masonry-item {
    transform-style: preserve-3d;
    perspective: 800px;
}

.masonry-item img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.masonry-item:hover img {
    transform: scale(1.08) translateZ(20px);
    filter: brightness(1.05) contrast(1.02);
}

.masonry-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.1) 40%,
        transparent 100%
    );
    backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.masonry-item:hover .masonry-overlay {
    backdrop-filter: blur(2px);
}

/* ============================================
   SECTION TRANSITIONS (cinematic)
   ============================================ */
.section-dark {
    position: relative;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    pointer-events: none;
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    text-align: center;
}

.video-wrapper {
    width: 100%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
}

.video-details {
    max-width: 700px;
}

.video-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.video-placeholder:hover .video-thumb {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(13, 20, 28, 0.4); /* var(--color-bg-cream) */
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.video-play-btn:hover {
    background: rgba(45, 80, 22, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg circle {
    transition: stroke 0.3s ease;
}

.video-play-btn:hover svg circle {
    stroke: var(--color-secondary);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-embed {
    position: absolute;
    inset: 0;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.video-details h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.video-details p {
    color: var(--color-text-cream);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.video-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-cream);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.video-feature:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200, 169, 110, 0.2);
}

.video-feature-icon {
    font-size: 1.2rem;
}

/* ============================================
   INSTAGRAM ENHANCED
   ============================================ */
.insta-item img {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.1);
}

.insta-overlay {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.5), rgba(200, 169, 110, 0.4));
}

/* ============================================
   FEATURES ENHANCED (hover magnetic)
   ============================================ */
.feature-item {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, background 0.4s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: rgba(200, 169, 110, 0.2);
}

.feature-icon svg {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.15) rotate(-5deg);
}

/* ============================================
   CONTACT OPTIONS ENHANCED
   ============================================ */
.contact-option {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(200, 169, 110, 0.3);
}

.contact-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-phone:hover {
    border-color: rgba(26, 115, 232, 0.3);
}

.contact-email:hover {
    border-color: rgba(230, 81, 0, 0.3);
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */
.footer-social a {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.1);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 1001;
    transition: width 0.1s linear;
    width: 0%;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 280px; /* Increased from 120px */
    height: auto;
    object-fit: contain;
    animation: loadingPulse 1.5s ease-in-out infinite;
    margin-bottom: 30px;
}

.loading-bar {
    width: 200px; /* Increased from 120px */
    height: 3px; /* Slightly thicker */
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
}

.loading-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* ============================================
   PHOTO STRIP IMERSIVO
   ============================================ */
.photo-strip {
    background: var(--color-bg-dark);
    padding: 60px 0;
    overflow: hidden;
}

.photo-strip-inner {
    display: flex;
    gap: 16px;
    padding: 0 24px;
    max-width: var(--container-wide);
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.photo-strip-inner::-webkit-scrollbar {
    display: none;
}

.photo-strip-item {
    position: relative;
    flex: 0 0 340px;
    border-radius: var(--border-radius);
    overflow: hidden;
    scroll-snap-align: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.photo-strip-item:hover {
    transform: scale(1.03);
}

.photo-strip-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.photo-strip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   PHOTO STRIP RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .photo-strip-item {
        flex: 0 0 280px;
    }
    .photo-strip-item img {
        height: 200px;
    }
    .photo-strip {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .photo-strip-item {
        flex: 0 0 85vw;
    }
    .photo-strip-item img {
        height: 180px;
    }
}