:root {
    --primary: #e31e24; /* Rojo JAO */
    --gold: #c5a059;
    --dark: #1a1a1a;
    --white: #ffffff;
    --bg: #fcfcfc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg); color: var(--dark); line-height: 1.6; }

/* NAVBAR PRO */
.navbar { background: white; padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--primary); }
.nav-container { max-width: 1200px; margin: auto; display: flex; justify-content: center; align-items: center; gap: 60px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 700; text-transform: uppercase; font-size: 13px; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-logo img { height: 75px; }
.nav-btn { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 4px; }

/* HERO HOME */
.hero-home { height: 90vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Portada\ Pagina\ JAO.png'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1; margin: 20px 0; }
.hero-content h1 span { color: var(--primary); }
.tagline { text-transform: uppercase; letter-spacing: 5px; color: var(--gold); font-weight: 700; }
.divider { width: 80px; height: 4px; background: var(--gold); margin: 20px auto; }
.btn-gold { display: inline-block; background: var(--gold); color: white; padding: 15px 40px; text-decoration: none; font-weight: 700; border-radius: 50px; transition: 0.3s; }
.btn-gold:hover { transform: scale(1.1); background: var(--primary); }

/* PÁGINAS DE CONTENIDO */
.page-title { padding: 80px 20px; text-align: center; background: #f4f4f4; }
.page-title h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--primary); }

/* MENU */
.menu-view { padding: 50px 20px; text-align: center; }
.menu-wrapper { max-width: 900px; margin: auto; border: 15px solid white; box-shadow: 0 20px 50px rgba(0,0,0,0.1); position: relative; }
.zoom-img { width: 100%; transition: 0.5s; cursor: crosshair; }
.menu-overlay-hint { padding: 10px; font-size: 12px; color: #777; }

/* UBICACION CARD */
.contact-section { padding: 0 20px 80px; }
.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; max-width: 1100px; margin: -50px auto 0; background: white; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; }
.contact-info { padding: 60px; }
.contact-info h2 { font-family: 'Playfair Display'; font-size: 2.5rem; margin-bottom: 30px; color: var(--primary); }
.info-item { margin-bottom: 25px; }
.btn-wa-contact { display: block; background: #25d366; color: white; text-align: center; padding: 15px; text-decoration: none; border-radius: 5px; font-weight: 700; margin-top: 30px; }

/* ANIMACION */
.fade-in { animation: fadeInAnim 1s ease-out; }
@keyframes fadeInAnim { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 20px; }
    .contact-card { grid-template-columns: 1fr; margin-top: 20px; }
    .hero-content h1 { font-size: 3rem; }
}
/* DISEÑO DEL PIE DE PÁGINA */
.footer-social {
    background-color: #111; /* Color negro elegante */
    padding: 40px 0;
    text-align: center;
    color: white;
    border-top: 3px solid #e31e24; /* Línea roja JAO */
}

.social-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Estilo circular de los botones */
.social-btns a {
    width: 50px;
    height: 50px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: 0.3s;
}

/* Efecto Facebook (Azul) */
.btn-fb:hover {
    background-color: #1877F2 !important;
    transform: translateY(-5px);
}

/* Efecto Instagram (Degradado) */
.btn-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
    transform: translateY(-5px);
}

.copy { font-size: 12px; color: #666; margin-top: 10px; }
/* --- ADAPTACIÓN PARA CELULARES --- */
@media (max-width: 768px) {
    /* El menú de arriba se ajusta */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .nav-links {
        gap: 15px;
        font-size: 11px; /* Letra un poco más chica para que quepa */
    }

    .nav-logo img {
        height: 60px; /* Logo más pequeño en celular */
    }

    /* El título principal no se sale de la pantalla */
    .hero-home h1 {
        font-size: 2.5rem !important;
        padding: 0 10px;
    }

    /* La carta (menu.jpg) se ajusta al ancho del cel */
    .menu-card-full {
        padding: 10px;
    }

    .zoom-img {
        width: 100%;
        border-width: 5px; /* Marco más delgado */
    }

    /* La sección de Ubicación se pone en una sola columna */
    .contact-card {
        grid-template-columns: 1fr !important;
        margin: 10px;
    }

    .info-text {
        padding: 25px;
        text-align: center;
    }

    /* El mapa se hace un poco más chaparro para que no estorbe */
    .map-box iframe {
        height: 250px;
    }

    /* Los botones de redes sociales en el pie de página */
    .social-buttons {
        gap: 15px;
    }
    
    .btn-social {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* DISEÑO DEL BOTÓN DE LLAMADA */
.btn-llamada-flotante {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Va a la izquierda para no estorbar a WhatsApp */
    background-color: #007bff; /* Azul profesional */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: none; /* OCULTO EN COMPUTADORA */
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.btn-llamada-flotante i {
    font-size: 18px;
}

/* MOSTRAR SOLO EN PANTALLAS CHICAS (CELULARES) */
@media (max-width: 768px) {
    .btn-llamada-flotante {
        display: flex; /* APARECE EN CELULAR */
    }
}

/* Efecto de pulso para que llame la atención */
.btn-llamada-flotante {
    animation: pulso-llamada 2s infinite;
}

@keyframes pulso-llamada {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}