/* ==========================================================================
   CEVICHERÍA PUERTO AZUL - ESTILOS PRINCIPALES
   Colores: Azul Marino (#0B192C / #1E3E62) & Blanco Hueso (#FAF7F0 / #F3EEEA)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    /* Paleta Principal */
    --navy-900: #07111E;
    --navy-800: #0B192C;
    --navy-700: #132A45;
    --navy-600: #1E3E62;
    --navy-500: #2E5A88;
    
    /* Blanco Hueso y Tonos Neutros */
    --bone-50: #FAF7F0;
    --bone-100: #F3EEEA;
    --bone-200: #EBE5DB;
    --bone-300: #DDD5C7;
    --white: #FFFFFF;
    
    /* Acentos */
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #B89726;
    --ocean: #0284C7;
    --ocean-light: #38BDF8;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --coral: #EF4444;
    --coral-light: #FEE2E2;

    /* Textos */
    --text-primary: #0B192C;
    --text-secondary: #4B5E76;
    --text-light: #8E9BAE;
    --text-white: #FAF7F0;

    /* Sombras & Radios */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(11, 25, 44, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 25, 44, 0.12);
    --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.25);

    /* Tipografías */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bone-50);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

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

/* --- TIPOGRAFÍA Y TÍTULOS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-800);
    font-weight: 700;
    line-height: 1.25;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--ocean);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--gold);
    margin: 6px auto 0 auto;
}

.section-title {
    font-size: 2.4rem;
    color: var(--navy-800);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--navy-800);
    color: var(--bone-50);
    box-shadow: 0 4px 14px rgba(11, 25, 44, 0.2);
}

.btn-primary:hover {
    background-color: var(--navy-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 25, 44, 0.28);
}

.btn-accent {
    background-color: var(--gold);
    color: var(--navy-900);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-accent:hover {
    background-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--navy-800);
    color: var(--navy-800);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--navy-800);
    color: var(--bone-50);
}

.btn-outline-white {
    border: 2px solid var(--bone-50);
    color: var(--bone-50);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--bone-50);
    color: var(--navy-800);
}

.btn-whatsapp-dish {
    background-color: var(--whatsapp);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-dish:hover {
    background-color: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-primary {
    background-color: var(--whatsapp);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-primary:hover {
    background-color: var(--whatsapp-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- TOP BAR DE ATENCIÓN --- */
.top-bar {
    background-color: var(--navy-900);
    color: var(--bone-200);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

.status-open {
    background-color: rgba(37, 211, 102, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-closed {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bone-200);
}

.top-bar-contact a:hover {
    color: var(--gold);
}

/* --- HEADER & NAVBAR --- */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: var(--navy-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar-scrolled {
    padding: 12px 0;
    background-color: rgba(11, 25, 44, 0.96);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone-50);
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--ocean), var(--navy-600));
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone-50);
    font-size: 1.3rem;
}

.brand-text h1 {
    font-size: 1.4rem;
    color: var(--bone-50);
    line-height: 1.1;
    margin: 0;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--bone-100);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--bone-50);
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 86vh;
    background: linear-gradient(135deg, rgba(7, 17, 30, 0.88), rgba(19, 42, 69, 0.82)),
                url('https://images.unsplash.com/photo-1559847844-5315695dadae?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--bone-50);
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.4rem;
    color: var(--bone-50);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--bone-200);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 1.6rem;
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--bone-50);
}

.feature-text span {
    font-size: 0.8rem;
    color: var(--bone-300);
}

.hero-card-preview {
    position: relative;
}

.hero-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-image-box img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-box:hover img {
    transform: scale(1.04);
}

.hero-floating-tag {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--navy-900);
    border: 2px solid var(--gold);
    color: var(--bone-50);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.tag-icon {
    font-size: 2rem;
}

.tag-info h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0;
}

.tag-info p {
    font-size: 0.85rem;
    color: var(--bone-200);
    margin: 0;
}

/* --- ABOUT US / NOSOTROS --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bone-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 90%;
    height: 420px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -25px;
    right: 0;
    background-color: var(--navy-800);
    color: var(--bone-50);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
    text-align: center;
    max-width: 180px;
}

.about-img-badge .years {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
}

.about-img-badge .years-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    background-color: var(--white);
    padding: 18px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--navy-800);
    box-shadow: var(--shadow-sm);
}

.highlight-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
}

/* --- CARTA DIGITAL / MENU --- */
.menu-section {
    padding: 100px 0;
    background-color: var(--bone-50);
}

.menu-controls {
    margin-bottom: 40px;
}

.menu-search-wrapper {
    max-width: 540px;
    margin: 0 auto 30px auto;
    position: relative;
}

.menu-search-input {
    width: 100%;
    padding: 16px 50px 16px 24px;
    border: 2px solid var(--bone-300);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--navy-800);
    transition: var(--transition);
    outline: none;
    box-shadow: var(--shadow-sm);
}

.menu-search-input:focus {
    border-color: var(--navy-600);
    box-shadow: 0 0 0 4px rgba(30, 62, 98, 0.12);
}

.menu-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.btn-clear-search {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background-color: var(--white);
    border: 1px solid var(--bone-200);
    border-radius: var(--radius-full);
    color: var(--navy-800);
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-tab:hover {
    background-color: var(--bone-100);
    border-color: var(--navy-600);
    transform: translateY(-2px);
}

.category-tab.active {
    background-color: var(--navy-800);
    color: var(--bone-50);
    border-color: var(--navy-800);
    box-shadow: 0 4px 14px rgba(11, 25, 44, 0.2);
}

.menu-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bone-200);
}

.menu-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* --- TARJETA DE PLATO --- */
.dish-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bone-200);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-500);
}

.dish-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.dish-card:hover .dish-img {
    transform: scale(1.08);
}

.dish-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

.badge-popular {
    background-color: rgba(239, 68, 68, 0.92);
    color: var(--white);
}

.badge-special {
    background-color: rgba(212, 175, 55, 0.95);
    color: var(--navy-900);
}

.badge-recommended {
    background-color: rgba(30, 62, 98, 0.92);
    color: var(--bone-50);
}

.badge-gourmet {
    background-color: rgba(7, 17, 30, 0.92);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-quick-view {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11, 25, 44, 0.85);
    color: var(--bone-50);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dish-card:hover .btn-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.dish-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.dish-title {
    font-size: 1.25rem;
    color: var(--navy-800);
}

.dish-spicy {
    font-size: 0.9rem;
}

.dish-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.dish-tag {
    background-color: var(--bone-100);
    color: var(--navy-600);
    font-size: 0.74rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--bone-100);
}

.dish-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.dish-price-wrapper .currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
}

.dish-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-800);
    font-family: var(--font-body);
}

.menu-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 2px dashed var(--bone-300);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* --- PLATO ESTRELLA DE LA SEMANA --- */
.featured-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--bone-50);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.featured-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.featured-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: var(--gold);
    color: var(--navy-900);
    font-weight: 800;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.featured-content h3 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.featured-content h2 {
    color: var(--bone-50);
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.featured-content p {
    color: var(--bone-200);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.featured-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
}

/* --- RESERVAS --- */
.reservation-section {
    padding: 100px 0;
    background-color: var(--bone-100);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.reservation-info h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.reservation-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.reservation-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reservation-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy-800);
}

.reservation-perks li span {
    font-size: 1.2rem;
}

.reservation-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bone-200);
}

.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-800);
}

.form-input, .form-select {
    padding: 12px 16px;
    border: 1px solid var(--bone-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bone-50);
    color: var(--navy-800);
    outline: none;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    border-color: var(--navy-600);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 62, 98, 0.12);
}

/* --- TESTIMONIOS --- */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bone-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bone-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-comment {
    color: var(--navy-800);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--navy-800);
    color: var(--bone-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-body);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- UBICACIÓN Y CONTACTO --- */
.location-section {
    padding: 100px 0;
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bone-100);
    color: var(--navy-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    border: 2px solid var(--bone-200);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--navy-900);
    color: var(--bone-200);
    padding: 70px 0 24px 0;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--bone-50);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--bone-300);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone-50);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--navy-900);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--bone-300);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- MODAL DE DETALLE --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 17, 30, 0.75);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 750px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    overflow: hidden;
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bone-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--coral-light);
    color: var(--coral);
}

.modal-dish-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.modal-dish-img-wrap {
    position: relative;
    height: 100%;
    min-height: 340px;
}

.modal-dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-dish-info {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-dish-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-dish-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 14px;
}

.modal-dish-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.modal-dish-tags {
    margin-bottom: 24px;
    font-size: 0.88rem;
}

/* --- BOTÓN FLOTANTE WHATSAPP & BACK TO TOP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 1500;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(6deg);
    background-color: var(--whatsapp-dark);
}

.btn-back-to-top {
    position: fixed;
    bottom: 98px;
    right: 32px;
    width: 44px;
    height: 44px;
    background-color: var(--navy-800);
    color: var(--bone-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}

.btn-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background-color: var(--gold);
    color: var(--navy-900);
}

/* --- ANIMACIONES --- */
.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
