/* ==========================================================================
   LA FOGATA - Landing page moderna
   ========================================================================== */

:root {
    --fire-red: #e63946;
    --fire-orange: #ff6b35;
    --fire-yellow: #f9c74f;
    --charcoal: #0d0d0d;
    --charcoal-soft: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --cream: #fdf8f0;
    --cream-soft: #f5ede0;
    --gold: #d4a574;
    --gold-deep: #b08050;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-light: #999;
    --white: #ffffff;

    --ff-display: 'Playfair Display', serif;
    --ff-heading: 'Bebas Neue', sans-serif;
    --ff-body: 'Inter', system-ui, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-fire: 0 10px 40px rgba(230, 57, 70, 0.35);
    --shadow-gold: 0 10px 40px rgba(212, 165, 116, 0.35);

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed; inset: 0;
    background: var(--charcoal);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.fire-loader {
    position: relative; width: 120px; height: 140px;
    display: flex; justify-content: center; align-items: flex-end;
}
.flame {
    position: absolute; bottom: 0;
    width: 20px; height: 60px;
    background: linear-gradient(to top, #f9c74f 0%, #ff6b35 50%, #e63946 100%);
    border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
    filter: blur(2px);
    animation: flicker 1.2s ease-in-out infinite alternate;
    transform-origin: bottom;
}
.flame:nth-child(1) { left: 20px; height: 50px; animation-delay: 0s; }
.flame:nth-child(2) { left: 40px; height: 80px; animation-delay: 0.2s; }
.flame:nth-child(3) { left: 55px; height: 100px; animation-delay: 0.1s; z-index: 2; }
.flame:nth-child(4) { left: 70px; height: 70px; animation-delay: 0.3s; }
.flame:nth-child(5) { left: 85px; height: 55px; animation-delay: 0.15s; }

@keyframes flicker {
    0%   { transform: scaleY(1) scaleX(1); opacity: 0.9; }
    50%  { transform: scaleY(1.1) scaleX(0.95); opacity: 1; }
    100% { transform: scaleY(0.95) scaleX(1.05); opacity: 0.85; }
}
.preloader-text {
    margin-top: 30px; color: var(--cream);
    font-family: var(--ff-heading); font-size: 1.4rem;
    letter-spacing: 4px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.5; } }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--white);
}
.nav-logo i {
    color: var(--fire-orange);
    font-size: 1.6rem;
    animation: flicker-icon 2s ease-in-out infinite;
}
@keyframes flicker-icon {
    0%, 100% { transform: scale(1) rotate(-2deg); filter: drop-shadow(0 0 8px var(--fire-orange)); }
    50% { transform: scale(1.1) rotate(2deg); filter: drop-shadow(0 0 16px var(--fire-yellow)); }
}
.nav-menu {
    display: flex; gap: 36px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow));
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-fire);
    transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(230, 57, 70, 0.5);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(230, 57, 70, 0.3), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.25), transparent 50%),
        linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%);
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1920&q=80') center/cover;
    opacity: 0.25;
    filter: blur(2px);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.8) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--fire-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fire-orange), 0 0 20px var(--fire-red);
    animation: rise linear infinite;
}
@keyframes rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 960px; width: 100%;
    text-align: center;
    color: var(--white);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: fade-down 1s ease 0.2s both;
}
.hero-badge i { color: var(--fire-yellow); }

.hero-title {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 30px;
}
.hero-title-small {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    animation: fade-down 1s ease 0.3s both;
}
.hero-title-main {
    font-family: var(--ff-heading);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 0.95;
    background: linear-gradient(180deg, var(--fire-yellow) 0%, var(--fire-orange) 50%, var(--fire-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 30px rgba(255, 107, 53, 0.4));
    animation: fade-down 1s ease 0.4s both;
}
.hero-title-sub {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--cream);
    animation: fade-down 1s ease 0.5s both;
}

.hero-description {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    animation: fade-down 1s ease 0.6s both;
}

.hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fade-down 1s ease 0.7s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    animation: fade-up 1s ease 0.9s both;
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    color: var(--fire-yellow);
    letter-spacing: 2px;
}
.stat span:nth-child(2) {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    color: var(--fire-orange);
}
.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}
.hero-scroll i { font-size: 1rem; }

@keyframes fade-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ---------- Botones globales ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    box-shadow: var(--shadow-fire);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(230, 57, 70, 0.6); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--white); transform: translateY(-3px); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(212, 165, 116, 0.5); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Section común ---------- */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--fire-red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.section-tag.light {
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold);
}
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
}
.section-title.light { color: var(--white); }
.section-title .accent {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}
.section-title .accent-gold {
    background: linear-gradient(135deg, var(--gold), var(--fire-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}
.section-description {
    max-width: 600px;
    margin: 18px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ---------- Historia ---------- */
.historia { background: var(--cream); }
.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.historia-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.historia-image img {
    width: 100%; height: 600px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.historia-image:hover img { transform: scale(1.05); }
.historia-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow);
}
.historia-image-badge i {
    font-size: 1.8rem;
    color: var(--fire-orange);
}
.historia-image-badge strong { display: block; font-size: 1rem; }
.historia-image-badge span { font-size: 0.85rem; color: var(--text-muted); }

.historia-text h3 {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}
.historia-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.historia-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.value {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value i {
    font-size: 2rem;
    color: var(--fire-orange);
    margin-bottom: 12px;
}
.value h4 { font-size: 1.05rem; margin-bottom: 8px; }
.value p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Insignia ---------- */
.insignia {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}
.insignia::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.2), transparent 50%);
    pointer-events: none;
}
.insignia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.insignia-text .section-title { margin-bottom: 24px; }
.insignia-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.insignia-ingredients {
    display: grid;
    gap: 14px;
    margin-bottom: 40px;
}
.insignia-ingredients li {
    display: flex; align-items: center; gap: 14px;
    color: var(--cream);
    font-size: 1rem;
}
.insignia-ingredients i {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.insignia-price {
    display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.price-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.price-amount {
    font-family: var(--ff-heading);
    font-size: 3rem;
    color: var(--white);
    letter-spacing: 2px;
}
.price-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-left: auto;
}

.insignia-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.insignia-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.insignia-image:hover img { transform: scale(1.08) rotate(-2deg); }
.insignia-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4), transparent 60%);
    filter: blur(60px);
    z-index: -1;
}
.insignia-ribbon {
    position: absolute;
    top: 24px; right: -40px;
    transform: rotate(45deg);
    padding: 10px 60px;
    background: linear-gradient(135deg, var(--gold), var(--fire-yellow));
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
    display: flex; align-items: center; gap: 8px;
    justify-content: center;
}

/* ---------- Menú ---------- */
.menu-section { background: var(--cream); }
.menu-tabs {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 60px;
}
.menu-tab {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.menu-tab:hover { color: var(--fire-red); transform: translateY(-2px); }
.menu-tab.active {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    box-shadow: var(--shadow-fire);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.menu-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.menu-card img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover img { transform: scale(1.08); }
.menu-card[hidden] { display: none; }

.menu-card-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    z-index: 2;
    color: var(--white);
}
.menu-card-badge.popular { background: linear-gradient(135deg, var(--fire-red), var(--fire-orange)); }
.menu-card-badge.signature { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--charcoal); }
.menu-card-badge.new { background: linear-gradient(135deg, #4cb944, #2d8f29); }

.menu-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.menu-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-card-head h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
}
.menu-price {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    color: var(--fire-red);
    letter-spacing: 1px;
    white-space: nowrap;
}
.menu-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}
.menu-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.menu-tags span {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    background: var(--cream);
    color: var(--text-muted);
    font-size: 0.75rem;
    border-radius: var(--radius-full);
}
.menu-tags i { color: var(--fire-orange); }

.menu-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.menu-cta p {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 18px;
}

/* ---------- Experiencia ---------- */
.experiencia { background: var(--cream-soft); }
.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.exp-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.exp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.exp-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exp-card:hover .exp-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
}
.exp-card:hover .exp-icon i { -webkit-text-fill-color: var(--white); background: none; }
.exp-card h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 12px; }
.exp-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Galería ---------- */
.galeria { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.85) 100%);
    display: flex; align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
    color: var(--white);
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-style: italic;
}

/* ---------- Opiniones ---------- */
.opiniones { background: var(--cream-soft); }
.ratings-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 80px;
}
.rating-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.rating-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rating-card > i:first-child {
    font-size: 2rem;
    color: var(--fire-orange);
    margin-bottom: 12px;
}
.rating-number {
    font-family: var(--ff-heading);
    font-size: 3.5rem;
    color: var(--charcoal);
    letter-spacing: 2px;
    line-height: 1;
}
.rating-stars {
    color: var(--fire-yellow);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin: 10px 0;
}
.rating-source { font-size: 0.85rem; color: var(--text-muted); }

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}
.testimonial {
    position: absolute;
    inset: 0;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
    pointer-events: none;
}
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial-stars {
    color: var(--fire-yellow);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 28px;
    position: relative;
}
.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -40px; left: -20px;
    font-size: 6rem;
    color: var(--fire-orange);
    opacity: 0.2;
    font-family: var(--ff-display);
    line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; color: var(--charcoal); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

.testimonial-controls {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-top: 40px;
}
.testimonial-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    transform: scale(1.1);
}
.testimonial-dots { display: flex; gap: 10px; }
.testimonial-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.testimonial-dot.active {
    width: 30px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
    border-radius: 6px;
}

/* ---------- Reservas ---------- */
.reservas {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 50%, #1a0a0a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.reservas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.15), transparent 50%);
    pointer-events: none;
}
.reservas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.reservas-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 24px 0 32px;
}
.reservas-benefits { display: grid; gap: 14px; }
.benefit {
    display: flex; align-items: center; gap: 14px;
    color: var(--cream);
    font-size: 1rem;
}
.benefit i {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--charcoal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.reservas-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-disclaimer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Contacto ---------- */
.contacto { background: var(--cream); }
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contacto-info { display: grid; gap: 20px; }
.contacto-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.contacto-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.contacto-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.contacto-card h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.contacto-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.contacto-card a { color: var(--text); transition: color var(--transition-fast); }
.contacto-card a:hover { color: var(--fire-red); }
.contacto-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--fire-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}
.contacto-link:hover { gap: 14px; }
.horarios { display: grid; gap: 8px; }
.horarios li {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}
.horarios li span:first-child { color: var(--text-muted); }
.horarios li span:last-child { font-weight: 600; }

.contacto-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 500px;
}

/* ---------- Newsletter ---------- */
.newsletter {
    padding: 80px 24px;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(26, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
}
.newsletter-content { max-width: 700px; margin: 0 auto; }
.newsletter-content h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
.newsletter-form {
    display: flex; gap: 12px;
    max-width: 500px; margin: 0 auto;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 20px 0;
    font-size: 0.95rem;
}
.footer-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
}
.footer-logo i {
    color: var(--fire-orange);
    animation: flicker-icon 2s ease-in-out infinite;
}
.footer-social {
    display: flex; gap: 14px;
}
.footer-social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.footer-col a:hover { color: var(--fire-orange); padding-left: 5px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.footer-contact i { color: var(--fire-orange); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--fire-orange); }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }
.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-fire);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .historia-grid, .insignia-grid, .reservas-grid, .contacto-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-large { grid-column: span 2; grid-row: span 2; }
    .gallery-wide { grid-column: span 3; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { font-size: 1.2rem; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .historia-values { grid-template-columns: 1fr; }
    .historia-image img { height: 400px; }
    .reservas-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .ratings-summary { grid-template-columns: 1fr; gap: 16px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-large, .gallery-wide { grid-column: span 2; grid-row: span 1; }
    .gallery-large { grid-row: span 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testimonial { padding: 32px 24px; }
    .testimonial-text { font-size: 1.05rem; }
    .insignia-price { padding: 20px; }
    .price-amount { font-size: 2.2rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { min-width: 0; width: 100%; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .back-to-top { width: 44px; height: 44px; bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; padding: 20px; }
    .menu-tabs { gap: 8px; }
    .menu-tab { padding: 10px 18px; font-size: 0.85rem; }
    .container { padding: 0 16px; }
}
