:root {
    --bg-dark: #050505;
    --bg-light: #111111;
    --gold: #f4c025;
    --gold-dark: #b8860b;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

/* Navbar Clásica Elegante */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(244, 192, 37, 0.2);
    border-top: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 100px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--gold);
    }
    .nav-links.show { display: flex; }
    .mobile-menu-btn { display: block; }
}

/* HERO SECTION (Inicio) */
.hero {
    display: flex;
    height: calc(100vh - 130px);
    background: var(--bg-dark);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.sub-title {
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(244, 192, 37, 0.3);
}

/* MARQUEE SCROLLING LINE */
.marquee-container {
    width: 100%;
    background: var(--gold);
    color: #000;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.marquee-text {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: scroll 20s linear infinite;
}

.marquee-text span {
    padding-right: 50px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SPLIT BANNERS SECTION (Smash Hiro Style) */
.split-banners {
    display: flex;
    width: 100%;
    height: 60vh;
}

.banner-box {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    transition: 0.3s;
}

.banner-box:hover .banner-overlay {
    background: rgba(0,0,0,0.1);
}

.banner-link-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 10px #000;
    text-transform: lowercase;
    transition: 0.3s;
}

.banner-link-text:hover {
    color: var(--gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .split-banners { flex-direction: column; height: 80vh; }
}

/* FEATURED BURGERS SECTION */
.featured-burgers {
    padding: 60px 20px;
    background: var(--bg-dark);
    text-align: center;
}

.burger-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    flex-wrap: wrap;
}

.burger-card {
    background: #111;
    border: 1px solid rgba(244, 192, 37, 0.2);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    transition: 0.3s;
    text-align: left;
}

.burger-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(244, 192, 37, 0.1);
    border-color: var(--gold);
}

.burger-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.burger-info {
    padding: 20px;
}

.burger-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-info h3 span {
    color: var(--gold);
    font-size: 1.1rem;
}

.burger-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.hero-right {
    flex: 1.2;
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: 0.3s;
    width: fit-content;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(244, 192, 37, 0.5);
}

@media (max-width: 900px) {
    .hero { flex-direction: column; height: auto; }
    .hero-left { padding: 40px 20px; text-align: center; align-items: center; }
    .main-title { font-size: 4rem; }
    .hero-right { height: 50vh; width: 100%; }
    .hero-right::before {
        width: 100%; height: 30%;
        background: linear-gradient(to bottom, var(--bg-dark), transparent);
    }
}

/* GALLERY (Decoración en Inicio) */
.gallery-section {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(244, 192, 37, 0.1);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 40px;
}

.section-title span {
    color: var(--gold);
}

.scrolling-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.gallery-track { display: flex; width: fit-content; }
.track-left > div { display: flex; animation: scroll-left 50s linear infinite; }
.track-right > div { display: flex; animation: scroll-right 50s linear infinite; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.gallery-track img {
    height: 220px;
    width: 280px;
    object-fit: cover;
    margin: 0 7.5px;
    border-radius: 8px;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
    transition: 0.4s ease-out;
    border: 2px solid rgba(255,255,255,0.05);
}

.gallery-track img:hover {
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
    transform: scale(1.05);
    border-color: var(--gold);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.9), 0 0 15px rgba(244,192,37,0.3);
}

/* MENU SECTION (menu.html) */
.page-header {
    text-align: center;
    padding: 60px 20px 20px;
    background: url('images/fondo-carta.jpg') center/cover;
    position: relative;
    border-bottom: 3px solid var(--gold);
}
.page-header::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.8);
}
.page-header h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

.menu-category { margin-bottom: 50px; }
.menu-category h2 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(244, 192, 37, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.menu-item-info h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
}

.menu-item-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 5px;
}

.menu-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.2rem;
}

.badge {
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* CONTACT SECTION (contacto.html) */
.contact-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) { .contact-container { grid-template-columns: 1fr; } }

.contact-card {
    background: var(--bg-light);
    border: 1px solid rgba(244, 192, 37, 0.4);
    border-top: 4px solid var(--gold);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 192, 37, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
}

.social-link i { margin-bottom: 0; font-size: 1.5rem; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

#qrcode {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border: 2px solid var(--gold);
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* ==========================================
   PREMIUM DYNAMIC MENU AND INTERACTIVE FILTERS
   ========================================== */

/* Pestañas Virtuales (WOW Selector) */
.menu-view-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto 10px auto;
    max-width: 600px;
    padding: 0 20px;
}

.view-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.view-tab i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.view-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(244, 192, 37, 0.03);
}

.view-tab:hover i {
    color: var(--gold);
}

.view-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(244, 192, 37, 0.4), inset 0 0 5px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.view-tab.active i {
    color: #000;
}

/* Controles de la Carta (Buscador y Filtros Pegajosos) */
.menu-controls {
    position: sticky;
    top: 130px;
    z-index: 99;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 0 15px 0;
    border-bottom: 1px solid rgba(244, 192, 37, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
}

/* Ajuste móvil para los controles pegajosos */
@media (max-width: 768px) {
    .menu-controls {
        top: 120px;
        padding: 15px 0 10px 0;
    }
    .menu-view-selector {
        flex-direction: row;
        gap: 10px;
    }
    .view-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
    }
}

/* Buscador Glassmorphism */
.search-wrapper {
    max-width: 550px;
    margin: 0 auto 15px auto;
    position: relative;
    padding: 0 20px;
}

.search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 14px 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.search-wrapper input::placeholder {
    color: var(--text-muted);
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 15px rgba(244, 192, 37, 0.25);
}

.search-icon {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    padding: 5px;
}

.clear-search-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.clear-search-btn:hover {
    color: #fff;
}

/* Barra de Categorías Horizontal */
.categories-nav-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 5px 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.categories-nav-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.categories-nav {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    min-width: max-content;
}

.category-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.category-nav-btn i {
    color: var(--gold);
    transition: color 0.3s;
    font-size: 0.9rem;
}

.category-nav-btn:hover {
    background: rgba(244, 192, 37, 0.08);
    border-color: var(--gold);
    color: #fff;
}

.category-nav-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    box-shadow: 0 0 12px rgba(244, 192, 37, 0.3);
    transform: scale(1.03);
}

.category-nav-btn.active i {
    color: #000;
}

/* Estilo de Subtítulos de Categoría */
.category-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: -15px;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.8;
}

/* Estilos de Vista Premium de Novedades */
.novedades-premium-view {
    padding: 40px;
    background: linear-gradient(135deg, rgba(244, 192, 37, 0.08) 0%, rgba(5, 5, 5, 0.4) 100%);
    border: 1px solid rgba(244, 192, 37, 0.25);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(244, 192, 37, 0.03);
    margin-bottom: 40px;
    animation: goldGlow 4s infinite alternate;
}

@keyframes goldGlow {
    0% { border-color: rgba(244, 192, 37, 0.2); }
    100% { border-color: rgba(244, 192, 37, 0.45); }
}

.novedades-premium-view h2 {
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(244, 192, 37, 0.35);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 15px;
}

.novedades-premium-view .menu-item {
    padding: 20px 0;
    transition: all 0.3s;
}

.novedades-premium-view .menu-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.02);
}

/* Pantalla Sin Resultados (No Results) */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

.no-results i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.8;
}

.no-results p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.no-results p.sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Animación de entrada de secciones */
.fade-in-section {
    animation: sectionFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner de Cookies Glassmorphism */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(244, 192, 37, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    padding: 20px 30px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(244, 192, 37, 0.05);
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-banner.show {
    bottom: 30px;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.cookie-content p i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.1rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 800;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cookie-btn-accept:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(244, 192, 37, 0.5);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    .cookie-banner.show {
        bottom: 10px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn-accept, .cookie-btn-reject {
        flex: 1;
        max-width: 150px;
    }
}

/* Sección de Reseñas de Google (Call to Action) */
.reviews-cta-section {
    padding: 60px 20px;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.reviews-cta-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(244, 192, 37, 0.35);
    border-top: 4px solid var(--gold);
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(244, 192, 37, 0.05);
    transition: all 0.3s;
}

.reviews-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244, 192, 37, 0.15);
    border-color: var(--gold);
}

.reviews-cta-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    animation: starsPulse 2s infinite alternate;
}

@keyframes starsPulse {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(244, 192, 37, 0.3); }
    100% { transform: scale(1.05); text-shadow: 0 0 15px rgba(244, 192, 37, 0.8); }
}

.reviews-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.reviews-cta-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-gold-review i {
    font-size: 1.2rem;
}

.btn-gold-review:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(244, 192, 37, 0.6);
    transform: scale(1.05);
}

/* Animación pulsante para el badge de Abierto */
@keyframes pulseGreen {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(37,211,102,0.4); }
    50% { transform: scale(1.04); box-shadow: 0 0 12px rgba(37,211,102,0.7); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(37,211,102,0.4); }
}


