/* ================= VARIABLES ================= */
:root {
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --brand-green: #d8a823;
    --brand-green-hover: #00e65c;
    --cheddar: #ffcc00;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

a { text-decoration: none; }

/* ================= LOADER ================= */
.loader-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.burger-loader {
    font-size: 4rem;
    animation: bounce 1s infinite alternate;
}
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* ================= NAVBAR ================= */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
header.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
/* Ajustes para el contenedor del logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 0;
}

/* Control de tamaño de la imagen */
.logo img {
    height: 60px; /* Ajusta según el alto de tu header */
    width: auto;  /* Mantiene la proporción */
    display: block;
    transition: transform 0.3s ease;
}

/* Efecto visual al pasar el mouse */
.logo img:hover {
    transform: scale(1.05);
}

/* Ajuste opcional para los enlaces si quieres usar el naranja del logo */
.nav-links a:hover {
    color: #ff9100; /* Un naranja similar al de la "A" del logo */
}

.btn-primary.nav-cta {
    background-color: #ffcc00; /* El amarillo característico */
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 20px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    
}
.logo span { color: var(--cheddar); }
.nav-links a {
    color: var(--text-main);
    margin: 0 15px;
    font-weight: 600;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--brand-green); }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================= BOTONES ================= */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background: var(--brand-green);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}
.btn-primary:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
}
.btn-secondary:hover { background: #2a2a2a; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    width: 100%;
    margin-top: 15px;
}
.btn-outline:hover {
    background: var(--brand-green);
    color: var(--bg-dark);
}
.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* ================= HERO (PARALLAX) ================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.63), hwb(0 0% 100% / 0.637)), 
                url('https://lh3.googleusercontent.com/p/AF1QipNLx4uXOA1zXTpA0NLEAy5lMuJRx2t5sg4oMGxa=s680-w680-h510-rw') center/cover fixed;
}
.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}
.badge {
    background: rgba(255, 204, 0, 0.2);
    color: var(--cheddar);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.text-gradient {
    background: linear-gradient(45deg, var(--cheddar), var(--brand-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ================= LAYOUT Y SECCIONES ================= */
.section-padding { padding: 100px 20px; }
.bg-darker { background-color: var(--bg-darker); }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cheddar);
}
.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

/* ================= CARDS (Promos & Menú) ================= */
.promos-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.menu-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.15);
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.card-content { padding: 25px; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; }
.price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cheddar);
}
.tag {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 10;
}
.tag-hot { background: #ff3333; color: white; }
.tag-top { background: var(--cheddar); color: var(--bg-dark); }

/* ================= TEXT COLORS ================= */
.text-green { color: var(--brand-green); }
.text-yellow { color: var(--cheddar); }

/* ================= NOSOTROS ================= */
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.feature {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
}

/* ================= REVIEWS ================= */
.reviews-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    font-style: italic;
    color: var(--text-muted);
}
.review-card strong {
    display: block;
    margin-top: 15px;
    color: var(--brand-green);
    font-style: normal;
}
.stars i { color: var(--cheddar); font-size: 1.5rem; }

/* ================= CONTACTO ================= */
.locations-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.location-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 4px solid var(--brand-green);
}
.location-icon {
    font-size: 3rem;
    color: var(--cheddar);
    margin-bottom: 20px;
}
.w-100 { width: 100%; }
.mb-2 { margin-bottom: 10px; }

/* ================= MODAL ================= */
.modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    justify-content: center; align-items: center;
}
.modal-content {
    background-color: var(--bg-card);
    padding: 40px; border-radius: var(--border-radius);
    width: 90%; max-width: 400px; text-align: center;
    position: relative; border: 1px solid #333;
}
.close-modal {
    color: #aaa; float: right; font-size: 28px; font-weight: bold;
    position: absolute; top: 10px; right: 20px; cursor: pointer;
}
.close-modal:hover { color: white; }

/* ================= FOOTER ================= */
footer {
    text-align: center; padding: 30px; background: var(--bg-darker);
    color: var(--text-muted); border-top: 1px solid #222;
}

/* ================= ANIMACIONES (TIPO FRAMER MOTION) ================= */
.hidden { opacity: 0; visibility: hidden; will-change: opacity, transform; }
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-right { animation: fadeRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-left { animation: fadeLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.zoom-in { animation: zoomIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); visibility: visible; }
    100% { opacity: 1; transform: translateY(0); visibility: visible; }
}
@keyframes fadeRight {
    0% { opacity: 0; transform: translateX(-40px); visibility: visible; }
    100% { opacity: 1; transform: translateX(0); visibility: visible; }
}
@keyframes fadeLeft {
    0% { opacity: 0; transform: translateX(40px); visibility: visible; }
    100% { opacity: 1; transform: translateX(0); visibility: visible; }
}
@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.95); visibility: visible; }
    100% { opacity: 1; transform: scale(1); visibility: visible; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .about-grid, .locations-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 20px; }
}

/* --- ESTILOS FOOTER SABROSAMENTE --- */
.footer-sabrosamente {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 20px;
    border-top: 5px solid #ffcc00;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    align-items: start;
}

/* Branding */
.footer-logo {
    height: 90px;
    margin-bottom: 15px;
}

.tagline {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Secciones */
.footer-section h3 {
    color: #ffcc00;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Botones de WhatsApp */
.whatsapp-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-wa .wa-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

.btn-wa .wa-text span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-wa .wa-text strong {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Colores específicos por ciudad */
.btn-wa.posadas {
    background-color: #ffcc00; /* Amarillo */
    color: #000;
}

.btn-wa.mendoza {
    background-color: #ff9100; /* Naranja */
    color: #fff;
}

.btn-wa:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.2);
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 2.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffcc00;
}

.promo-text {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Copyright */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .whatsapp-grid, .social-icons {
        align-items: center;
        justify-content: center;
    }
}
/* --- AJUSTES PARA CENTRAR EL LOGO Y TEXTO DE MARCA --- */

/* Asegura que la sección de la marca use flexbox para centrar internamente */
.footer-section.brand {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    text-align: center; /* Centra el texto */
}

/* Forzar centrado del logo dentro de su bloque flex */
.footer-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 90px; /* Mantengo el alto que definimos */
    margin-bottom: 15px;
}

/* Asegura que el tagline tenga un ancho máximo controlado para que no se vea feo al centrar */
.tagline {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 320px; /* Evita que el texto centrado sea muy ancho */
}
/* --- CENTRADO DE LOGO Y TEXTO (COLUMNA 1) --- */
.footer-section.brand {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el logo y el texto horizontalmente */
    text-align: center;
}

.footer-logo {
    display: block;
    margin: 0 auto 15px auto; /* Margen automático a los lados para centrar */
    height: 90px;
}

/* --- CENTRADO DE REDES SOCIALES E INSTAGRAM (COLUMNA 3) --- */
.footer-section.social {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los iconos y el título */
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center; /* Asegura que los iconos de IG y TikTok estén al centro */
    gap: 25px;
    margin-bottom: 15px;
    width: 100%;
}

.social-icons a {
    color: #fff;
    font-size: 2.5rem; /* Los hice un poquito más grandes para que luzcan más */
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffcc00; /* El amarillo de Sabrosamente al pasar el mouse */
    transform: scale(1.1);
}

/* Ajuste para que los títulos de todas las secciones también se centren */
.footer-section h3 {
    text-align: center;
    width: 100%;
}

/* --- REFUERZO PARA LA COLUMNA DE WHATSAPP (COLUMNA 2) --- */
.footer-section.contact {
    display: flex;
    flex-direction: column;
    align
    /* --- CENTRADO DE COLUMNA DE WHATSAPP (COLUMNA 2) --- */
.footer-section.contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el título "¡Pedí tu Burger!" */
    text-align: center;
}

.whatsapp-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los botones uno sobre otro */
    gap: 15px;
    width: 100%;
}

/* --- CENTRADO INTERNO DEL BOTÓN --- */
.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el icono y el texto dentro del botón */
    text-align: center;      /* Centra las líneas de texto (Sucursal / Ciudad) */
    width: 100%;
    max-width: 280px;        /* Mantiene un tamaño prolijo */
    padding: 12px 15px;
}

.wa-text {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centra "Sucursal" sobre el nombre de la ciudad */
    justify-content: center;
}

.btn-wa .wa-icon {
    margin-right: 12px;     /* Espacio entre el logo de WA y el texto centrado */
}

/* Ajuste de tipografía para que se lea mejor centrado */
.btn-wa .wa-text span {
    font-size: 0.75rem;
    letter-spacing:

    .footer-logo {
    transition: transform 0.2s ease-out;
    perspective: 1000px; /* Da profundidad al efecto */
    cursor: pointer;
}

/* Un pulso sutil constante para los botones de las sucursales */
.btn-wa {
    animation: pulse-sutil 2s infinite;
}

@keyframes pulse-sutil {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}