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

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* ===== OVERRIDE PARA SITE.PHP - PERMITE SCROLL ===== */
body.site-body {
    height: auto !important;
    overflow: auto !important;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

/* VIDEO FONDO */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY SUAVE */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* ICONO ENGRANE */
.admin-gear {
    position: fixed;
    top: 25px;
    right: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.admin-gear:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

/* REDES SOCIALES - ESCRITORIO */
.social-sidebar {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.social-side-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #d4af37;
    border-radius: 8px;
    color: #000000;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: none;
    transition: all 0.2s ease;
}

.social-side-item:hover {
    background: #e5c158;
    transform: translateX(5px);
}

/* CONTENIDO PRINCIPAL */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 20px;
}

/* LOGO */
.logo-box {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.logo {
    width: 453px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.3));
    max-width: 95%;
    background: transparent;
    animation: pulse-glow-white 3s infinite ease-in-out;
    border-radius: 50%;
}

@keyframes pulse-glow-white {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 120px rgba(255, 255, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.3));
    }
}

/* TÍTULOS */
.titulos-fila {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.titulo-plata {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff, #c0c0c0, #808080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

.titulo-oro {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff7d7, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212,175,55,0.5);
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

.textos {
    margin: 10px 0 15px 0;
}

.italiano {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8e8e8;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.espanol {
    font-size: 0.95rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 3px;
    font-family: 'Montserrat', sans-serif;
}

.countdown-box {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.numero {
    font-size: 2.2rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    width: 100%;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.etiqueta {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 400;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
}

.boton {
    display: inline-block;
    padding: 10px 35px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
    margin-top: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.boton:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(46, 125, 50, 0.5);
}

/* ===== ADMIN PANEL ===== */
.admin-body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: #f5f7fb;
    min-height: 100vh;
    color: #333;
    overflow: visible;
    overflow-x: hidden;
}

.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a, #1e1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.login-title {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8f8f8;
    font-family: 'Montserrat', sans-serif;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.admin-header {
    background: #0a0a0a;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 100;
    border-bottom: 2px solid #d4af37;
}

.header-logo {
    height: 85px;
    width: auto;
}

.admin-container {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.admin-sidebar {
    width: 280px;
    background: white;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.nav-item {
    padding: 1.2rem 2rem;
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-left: 4px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.nav-item.active {
    background: #fcf8f0;
    color: #d4af37;
    border-left-color: #d4af37;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: #f5f7fb;
    min-height: calc(100vh - 80px);
    overflow-y: auto;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.card-header {
    padding: 1.2rem 1.8rem;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-body {
    padding: 1.8rem;
}

.toggle-group {
    margin-bottom: 1.2rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-input {
    display: none;
}

.toggle-slider {
    width: 52px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    position: relative;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-input:checked + .toggle-slider {
    background: #d4af37;
}

.toggle-input:checked + .toggle-slider:before {
    left: 28px;
}

.social-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: #f8f8f8;
    padding: 0.3rem 1rem;
    border-radius: 10px;
}

.timeout-warning {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d4af37;
    color: #0a0a0a;
    padding: 1rem 2rem;
    border-radius: 50px;
    transform: translateX(400px);
    transition: 0.3s;
}

.timeout-warning.show {
    transform: translateX(0);
}

/* ===== MÓVIL (coming soon y admin) ===== */
@media (max-width: 768px) {
    /* REDES SOCIALES EN MÓVIL - VISIBLES */
    .social-sidebar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        background: rgba(0, 0, 0, 0.6) !important;
        padding: 10px 20px !important;
        border-radius: 40px !important;
        width: auto !important;
        margin: 0 auto !important;
        z-index: 9999 !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .social-side-item {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
        background: #d4af37 !important;
        color: #000000 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    }
    
    .content {
        padding-bottom: 80px !important;
    }
    
    /* ADMIN MÓVIL */
    .admin-sidebar {
        width: 100%;
        height: auto;
        bottom: 0;
        top: auto;
        border-top: 2px solid #d4af37;
    }
    
    .sidebar-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem 0;
    }
    
    .nav-item {
        flex: 1;
        padding: 0.8rem 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex-direction: column;
        font-size: 0.7rem;
        text-align: center;
    }
    
    .nav-item i {
        font-size: 1.2rem;
    }
    
    .admin-content {
        margin-left: 0;
        margin-bottom: 70px;
    }
    
    .logo {
        width: 300px;
    }
    
    .titulo-plata {
        font-size: 2.2rem;
    }
    
    .titulo-oro {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .numero {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        bottom: 15px !important;
        gap: 10px !important;
        padding: 8px 15px !important;
    }
    
    .social-side-item {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    .logo {
        width: 220px;
    }
    
    .titulo-plata {
        font-size: 1.6rem;
    }
    
    .titulo-oro {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 55px;
    }
    
    .numero {
        font-size: 1.4rem;
        padding: 4px 6px;
    }
}

/* ===== NUEVOS ESTILOS PARA SITE.PHP ===== */
:root {
    --dorado: #d4af37;
    --dorado-oscuro: #b8860b;
    --rojo-mexicano: #9e2a2b;
    --rojo-oscuro: #7a1f20;
    --blanco-hueso: #f5f0e6;
    --gris-claro: #a89f91;
    --gris-oscuro: #4a4a4a;
    --negro-fondo: #0c0c0c;
    --negro-suave: #1a1a1a;
    --sombra-suave: 0 10px 30px rgba(0,0,0,0.3);
    --sombra-dorada: 0 0 20px rgba(212,175,55,0.3);
    --font-titulos: 'Cormorant Garamond', serif;
    --font-texto: 'Montserrat', sans-serif;
}

body.site-body {
    background: var(--blanco-hueso);
    color: var(--gris-oscuro);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font-texto);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

h1, h2, h3, .gold-text {
    font-family: var(--font-titulos);
    font-weight: 600;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--dorado);
    text-shadow: var(--sombra-dorada);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-family: var(--font-titulos);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--dorado);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-claro);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: var(--font-texto);
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    width: 100%;
}

.hero-logo {
    width: 400px;
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.5));
    animation: pulse-gold 3s infinite;
}

.hero-phrase {
    font-size: 2rem;
    color: var(--blanco-hueso);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: var(--font-titulos);
    letter-spacing: 2px;
}

@keyframes pulse-gold {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212,175,55,0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(212,175,55,0.8)); }
}

.sabores-section,
.about-section,
.destacados-section,
.menu-section {
    padding: 6rem 0;
    text-align: center;
    width: 100%;
}

.sabores-section {
    background: linear-gradient(135deg, #f8f4e9, #fff);
}

.about-section {
    background: var(--negro-fondo);
    color: var(--blanco-hueso);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 8rem 0;
    width: 100%;
}

.about-section .section-description {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.destacados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.destacado-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
}

.destacado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(212,175,55,0.2);
}

.card-image {
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destacado-card:hover .card-image img {
    transform: scale(1.1);
}

.destacado-card h3 {
    padding: 1.5rem;
    color: var(--gris-oscuro);
    font-size: 1.3rem;
    text-align: center;
    font-family: var(--font-titulos);
}

/* ===== MENÚ EJECUTIVO CON TARJETAS ===== */
.menu-ejecutivo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    width: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.15);
}

.menu-card-image {
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    color: #9e2a2b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-titulos);
}

.menu-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: var(--font-texto);
}

.menu-card-precio {
    display: inline-block;
    background: #d4af37;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
    border-radius: 25px;
    font-family: var(--font-texto);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--dorado);
    z-index: 1000;
    padding: 0.5rem;
}

.bottom-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blanco-hueso);
    text-decoration: none;
    font-size: 0.8rem;
    gap: 0.2rem;
    font-family: var(--font-texto);
}

.bottom-bar-item i {
    font-size: 1.3rem;
    color: var(--dorado);
}

.site-footer {
    background: var(--negro-fondo);
    color: var(--blanco-hueso);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-texto);
}

.footer-contact i {
    color: var(--dorado);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--blanco-hueso);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--dorado);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gris-oscuro);
    font-size: 0.9rem;
    color: var(--gris-claro);
    font-family: var(--font-texto);
}

/* Responsive para site */
@media (max-width: 768px) {
    .hero-logo {
        width: 300px;
    }
    .hero-phrase {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-bottom-bar {
        display: flex;
        justify-content: space-around;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 220px;
    }
    .hero-phrase {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== BOTÓN ¿BUSCAS TRABAJO? ===== */
.work-btn {
    background: linear-gradient(135deg, #9e2a2b, #7a1f20);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1rem;
    border: 1px solid #d4af37;
    transition: all 0.3s;
    font-family: var(--font-texto);
}

.work-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158,42,43,0.4);
}

/* ===== SECCIÓN DE PROMOCIONES ===== */
.promos-section {
    padding: 4rem 0;
    background: #f8f4e9;
    width: 100%;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.promo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.promo-image {
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 1.5rem;
}

.promo-subtitle {
    color: #9e2a2b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-texto);
}

.promo-content h3 {
    color: #333;
    margin: 0.5rem 0;
    font-size: 1.5rem;
    font-family: var(--font-titulos);
}

.promo-desc {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-texto);
}

.promo-price {
    display: inline-block;
    background: #9e2a2b;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-texto);
}

.promo-incluye {
    color: #666;
    font-size: 0.9rem;
    font-family: var(--font-texto);
}

/* ===== HEADER PROFESIONAL (CREMA) ===== */
.site-header-profesional {
    background: #F5F0E6;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.logo-area .header-logo {
    height: 90px;
    width: auto;
}

/* Navegación principal */
.main-nav-profesional ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav-profesional a {
    color: #2C2C2C;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-nav-profesional a:hover {
    color: #9e2a2b;
}

/* Redes sociales en header - SIN SUBRAYADO */
.social-header {
    display: flex;
    gap: 1rem;
}

.social-header a {
    color: #9e2a2b;
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(158,42,43,0.1);
    text-decoration: none;
}

.social-header a:hover {
    background: #9e2a2b;
    color: white;
    transform: translateY(-2px);
}

.social-header a:focus,
.social-header a:active {
    text-decoration: none;
}

/* Botón de trabajo rojo mexicano */
.work-btn-profesional {
    background: #9e2a2b;
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid #d4af37;
    box-shadow: 0 4px 10px rgba(158,42,43,0.3);
    letter-spacing: 0.5px;
    display: inline-block;
}

.work-btn-profesional:hover {
    background: #7a1f20;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158,42,43,0.4);
}

/* Hamburguesa */
.hamburger-profesional {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger-profesional span {
    width: 28px;
    height: 3px;
    background: #9e2a2b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger-profesional.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-profesional.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-profesional.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FOOTER VERDE OLIVA PROFESIONAL ===== */
.site-footer-profesional {
    background: #5C6F68;
    color: #FAF7F2;
    padding: 4rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4rem;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-col {
    width: 100%;
    box-sizing: border-box;
}

.footer-col h4 {
    color: #F5F0E6;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-col p {
    color: #FAF7F2;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    word-wrap: break-word;
    font-family: 'Montserrat', sans-serif;
}

.footer-col i {
    margin-right: 0.8rem;
    color: #F5F0E6;
    width: 20px;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
    max-width: 100%;
}

.footer-phrase {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #F5F0E6;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: #F5F0E6;
    font-size: 1.3rem;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245,240,230,0.1);
    text-decoration: none;
}

.footer-social a:hover {
    background: #9e2a2b;
    color: white;
    transform: translateY(-3px);
}

.footer-social a:focus,
.footer-social a:active {
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245,240,230,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ===== RESPONSIVE PARA HEADER Y FOOTER ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* FIX PARA SCROLL EN MÓVIL */
    body.site-body {
        height: auto !important;
        overflow: auto !important;
        width: 100%;
    }
    
    .site-header-profesional {
        position: relative;
        width: 100%;
    }
    
    .hero-section {
        margin-top: 0;
        width: 100%;
    }
    
    .main-nav-profesional {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(245,240,230,0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav-profesional.active {
        left: 0;
    }
    
    .main-nav-profesional ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .main-nav-profesional a {
        font-size: 1.3rem;
    }
    
    .hamburger-profesional {
        display: flex;
    }
    
    .header-container {
        padding: 0 1rem;
        width: 100%;
    }
    
    .logo-area .header-logo {
        height: 70px;
    }
    
    .social-header {
        display: none;
    }
    
    .work-btn-profesional {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* FOOTER RESPONSIVE */
    .site-footer-profesional {
        width: 100%;
        padding: 3rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-col {
        width: 100%;
        padding: 0;
    }
    
    .footer-col i {
        display: inline-block;
        width: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        height: 70px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ajustes para evitar desbordamiento */
    .container {
        padding: 0 15px;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .sabores-section,
    .about-section,
    .destacados-section,
    .menu-section,
    .promos-section {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .logo-area .header-logo {
        height: 60px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-grid {
        padding: 0 10px;
    }
}

/* ===== RESPONSIVE PARA CARRUSELES - APILAR EN MÓVIL ===== */
@media (max-width: 768px) {
    /* Forzar que los carruseles se apilen uno arriba del otro */
    .promos-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Ajustar altura de los carruseles en móvil */
    .carrusel-container {
        height: 450px !important;
    }
    
    /* Espacio entre carruseles */
    .carrusel-clasicos,
    .carrusel-menu {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .carrusel-container {
        height: 400px !important;
    }
}

/* ===== ESTILOS PARA NOSOTROS.PHP ===== */
.hero-nosotros {
    margin-top: 0;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.historia-grid img:hover {
    transform: scale(1.02);
}

.filosofia-section i,
.valores-section i {
    transition: transform 0.3s;
}

.filosofia-section i:hover,
.valores-section i:hover {
    transform: translateY(-5px);
}

.equipo-section img {
    transition: transform 0.3s;
}

.equipo-section img:hover {
    transform: scale(1.05);
}

/* Responsive para nosotros.php */
@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .filosofia-section > div > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .equipo-section > div > div {
        grid-template-columns: 1fr !important;
    }
    
    .valores-section > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero-nosotros h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .valores-section > div > div {
        grid-template-columns: 1fr !important;
    }
}