/* ============================================
   ESTILOS PARA PÁGINA "CONTACTO" - DISEÑO PREMIUM 5 ESTRELLAS
   ============================================ */

/* Estilos específicos para la página de contacto */
.contact-section {
    padding: 6rem 2rem 4rem; /* Aumentado el padding superior de 4rem a 6rem */
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Cambiado de center a flex-start */
    width: 100%;
}

/* Línea dorada superior eliminada */

.contact-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin: 0 0 4rem; /* Aumentado de 2.5rem a 4rem */
    color: #1a1a1a;
    position: relative;
    font-family: 'Playfair Display', serif;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    box-sizing: border-box;
    line-height: 1.2;
}

/* ===== ESTILOS DE UBICACIÓN ===== */
.location-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.location-header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-header i {
    font-size: 1.5rem;
    color: #d4af37;
}

.location-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.location-content {
    padding: 2rem;
}

.location-map {
    height: 300px;
    background: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #f5f5f5 25%, #e9e9e9 25%, #e9e9e9 50%, #f5f5f5 50%, #f5f5f5 75%, #e9e9e9 75%, #e9e9e9 100%);
    background-size: 20px 20px;
}

.location-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.location-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

.location-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.location-btn:hover .btn-icon {
    transform: scale(1.1);
}

.btn-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Línea decorativa eliminada */

/* Estilos para los iconos de redes sociales */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
    justify-content: center;
    box-sizing: border-box;
}

.contact-info {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    padding-left: 10px; /* Espacio a la izquierda */
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-right: 1.5rem;
    min-width: 30px;
    text-align: left; /* Alinear íconos a la izquierda */
    padding-top: 0.3rem;
    flex-shrink: 0; /* Evitar que los íconos se encojan */
}

/* Estilos para elementos de contacto específicos */
.contact-item.direccion-premium {
    margin-left: 0.2cm; /* Reducido de 0.3cm a 0.2cm */
}

.contact-item.reservas-vip {
    margin-left: 0; /* Reducido de 0.1cm a 0cm */
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Asegurar alineación vertical de los textos */
.contact-item > div {
    flex-grow: 1;
}

/* Mantener estilos específicos */
.contact-item.servicio-conserjeria {
    /* Estilos específicos si son necesarios */
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #555;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.social-icon:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-form {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background-color: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-align: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c19b2e, #e6b90f);
}

/* Estilos para el mapa */
.map-container {
    margin: 6rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 1200px;
}

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

/* Estilos para la sección de horario */
.hours-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    text-align: center;
}

.hours-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hours-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hour-item {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hour-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.hour-item p:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    

    
    .contact-section h2 {
        font-size: 2.5rem;
        margin: 1rem 0 2.5rem;
    }
    
    .contact-grid {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .contact-grid {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2.5rem 1.5rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin-top: 3rem;
        height: 350px;
    }
}

/* ============================================
   ESTILOS PARA PÁGINA "SOBRE NOSOTROS" - DISEÑO LUJO 6 ESTRELLAS
   ============================================ */

/* Variables de color para el tema de lujo */
:root {
    --gold: #d4af37;
    --dark-gold: #b7950b;
    --light-gold: #f1c40f;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos para el logo Mediterráneo */
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo h1:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff; /* Cambiado a blanco puro para mejor contraste */
    margin: 0.2rem 0 0 0;
    font-weight: 400; /* Aumentado el peso para mejor legibilidad */
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para mejor legibilidad sobre fondos claros */
}

.rating-stars {
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

/* Estilos generales para la página */
.page-content {
    overflow-x: hidden;
    text-align: center;
    padding: 10rem 2rem;
}

/* Estilos para el título principal de la página de inicio */
.home-page .page-content h1 {
    font-size: 8rem; /* Tamaño duplicado */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.home-page .page-content .tagline {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 400;
    margin: 1rem auto 0;
    max-width: 800px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* =====================
   SECCIÓN HERO - SOBRE NOSOTROS
   ===================== */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') 
                no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
    position: relative;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero .hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.about-hero .page-title {
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}



.about-hero .tagline {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0.5rem auto 0;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

/* Efecto de partículas decorativas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

/* =====================
   SECCIÓN HISTORIA - SOBRE NOSOTROS
   ===================== */
.about-story {
    padding: 8rem 0;
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQUpIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJyZ2JhKDI0NSwgMjQ1LCAyNDUsIDEpIi8+PGxpbmUgeDE9IjAiIHkxPSIwIiB4Mj0iMCIgeTI9IjEwMCIgc3Ryb2tlPSJyZ2JhKDIxMiwgMTc1LCA1NSwgMC4wNSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.story-content {
    padding: 3rem;
    position: relative;
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 3.2rem;
    color: var(--dark);
    margin: 0 0 2.5rem 0;
    position: relative;
    padding-bottom: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.story-content h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
    border: 15px solid var(--light);
    background: var(--light);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Decoración de esquina dorada */
.story-content::before,
.story-content::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-style: solid;
    border-color: var(--gold);
    border-width: 0;
    transition: var(--transition);
    z-index: 2;
}

.story-content::before {
    top: 0;
    left: 0;
}

.team-member:hover .team-info h3 {
    color: var(--gold);
}

.team-info p {
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 2rem 0;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.team-info p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    opacity: 0.7;
    transition: var(--transition);
}

.team-member:hover .team-info p::after {
    width: 60px;
    opacity: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover .social-links {
    border-top-color: rgba(212, 175, 55, 0.2);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray);
    color: var(--dark);
    transition: var(--transition);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

/* Efecto de decoración flotante */
.team-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 196, 15, 0.05));
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.team-decoration-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.team-decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    animation-delay: 1s;
    animation-direction: reverse;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.team-section {
    padding: 6rem 0;
    background: #f9f9f9;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    color: #2a2a2a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1600px;
    padding: 8rem 2rem 6rem;
    position: relative;
    align-items: start;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 11rem 1rem 2rem;
    position: relative;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: -80px auto 1.5rem;
    border: 6px solid #fff;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    background: #f9f9f9;
    transition: all 0.4s ease;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 196, 15, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(20%);
    position: relative;
    z-index: 1;
}

.team-member:hover .member-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.team-member:hover .member-image img {
    filter: grayscale(0%);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin: 0 0 0.8rem 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.team-member h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.team-member .position {
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 2rem 0;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.team-member .position::after {
    content: '❧';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.7;
}

.team-member .bio {
    padding: 0 1rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* =====================
   SECCIÓN VALORES - SOBRE NOSOTROS
   ===================== */
.values-section {
    padding: 8rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjAyIi8+PHBhdGggZD0iTTI1IDI1TDUwIDUwTTc1IDI1TDUwIDUwTTUwIDUwbC0yNS0yNU0yNSA3NUw1MCA1ME03NSA3NUw1MCA1MCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjAuNSIgc3Ryb2tlLW9wYWNpdHk9IjAuMDMiLz48L3BhdHRlcj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.6;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--light);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 196, 15, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--light);
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.value-card:hover .value-icon::before {
    transform: scale(0.9);
    opacity: 0.5;
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 0 0 1.8rem 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
    transition: var(--transition);
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
    transition: var(--transition);
}

.value-card:hover h3 {
    color: var(--gold);
}

.value-card:hover h3::after {
    width: 80px;
    opacity: 1;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    transition: var(--transition);
}

/* Decoración de fondo */
.value-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.value-decoration span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    animation: float 8s infinite linear;
}

.value-decoration span:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.value-decoration span:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
    animation-direction: reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Efecto de borde dorado en hover */
.value-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover:before {
    transform: scaleX(1);
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0;
    }
    
    .about-hero .page-title {
        font-size: 2.8rem;
    }
    
    .about-hero .tagline {
        font-size: 1.2rem;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 6rem 1.5rem 4rem;
    }
    
    .team-member {
        padding: 9rem 1rem 2rem;
        min-height: 380px;
    }
    
    .member-image {
        width: 140px;
        height: 140px;
        margin: -70px auto 1.5rem;
    }
}

/* Estilos para la página de inicio */
.home-page {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') 
                no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    position: relative;
}

.home-page .page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    height: calc(100vh - 80px);
    margin-top: 80px;
}

.home-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-page .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Estilos para títulos */
h1, h2, .page-title, .section-title {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 2rem 0;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 1.8rem 0 1.2rem;
}

.section-title {
    font-size: 2.4rem;
    color: #333;
    margin: 2.5rem 0 1.5rem;
    display: inline-block;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title {
    font-size: 3rem;
    color: #000;
    text-shadow: none;
    margin: 3rem 0 1.5rem;
}

/* Estilo específico para la página de inicio */
.home-page .page-content > h1 {
    color: #fff;
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin: 2rem 0 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-page .tagline {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Estilos para el menú */
.menu-section {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h1 {
    font-size: 2.8rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.menu-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.category {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.category h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #2a2a2a;
    margin: 0 0 2rem 0;
    padding: 0 1rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
}

.category h3 span {
    position: relative;
    background: white;
    padding: 0 1.5rem;
}

.menu-item {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
}

.item-header h4 {
    font-size: 1.15rem;
    color: #2a2a2a;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.4;
}

.price {
    color: #d4af37;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.ingredients {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .menu-column {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .menu-column {
        flex: 0 0 100%;
    }
    
    .menu-header h1 {
        font-size: 2.2rem;
    }
}

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

/* Menú móvil */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
    z-index: 1001;
    position: fixed;
    right: 20px;
    top: 20px;
    background: rgba(0,0,0,0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }
    
    header {
        position: relative;
        padding: 1rem 0;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background: #1a1a1a;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column;
        padding: 0;
    }

    header nav ul li {
        margin: 15px 0;
        width: 100%;
    }

    header nav ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    .btn-reserva {
        display: block;
        text-align: center;
        margin-top: 20px;
        padding: 10px !important;
    }
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.page-content {
    flex: 1 0 auto;
    width: 100%;
    padding: 40px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Estilos del encabezado */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d4af37;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Botón de reserva */
.btn-reserva {
    background-color: #d4af37;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-reserva:hover {
    background-color: #b8952a;
}

.btn-reserva:after {
    display: none !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Secciones */
section {
    padding: 5rem 10%;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    color: #2a9d8f;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #e9c46a;
    bottom: -10px;
    left: 25%;
}

/* Menú */
.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 1rem;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

.menu-subtitle:before,
.menu-subtitle:after {
    content: '✻';
    margin: 0 15px;
    color: #d4af37;
    font-size: 1.2em;
}

/* Contenedor principal del menú */
.menu-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.menu-column {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Columna izquierda - Postres */
.menu-column.left {
    order: 1;
    max-width: 28%;
    padding-right: 2rem;
}

/* Columna central - Bebidas */
.menu-column.center {
    order: 2;
    max-width: 32%;
    padding: 0 2rem;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

/* Columna derecha - Platos principales */
.menu-column.right {
    order: 3;
    max-width: 38%;
    padding-left: 2rem;
}

/* Estilos para las categorías */
.category {
    margin-bottom: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    box-sizing: border-box;
}

.category h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #2a2a2a;
    margin: 0 0 2.5rem 0;
    padding: 0 1rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
}

/* Estilos para los ítems del menú */
.menu-item {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* Estilos para las cabeceras de los ítems */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
}

.item-header h4, .item-header h5 {
    color: #2a2a2a;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.item-header h4 {
    font-size: 1.15rem;
}

.item-header h5 {
    font-size: 1rem;
    font-weight: 500;
}

.price {
    color: #d4af37;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 1rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.ingredients {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* Estilo para la firma de especialidad */
.signature {
    position: absolute;
    top: 1.2rem;
position: absolute;
top: 1.2rem;
right: 1.2rem;
background: #f8f4e9;
color: #d4af37;
padding: 0.25rem 0.7rem;
border-radius: 15px;
font-size: 0.7rem;
font-weight: 600;
display: flex;
align-items: center;
    right: 1.2rem;
    background: #f8f4e9;
    color: #d4af37;
    padding: 0.25rem 0.7rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.signature i {
    margin-right: 4px;
    font-size: 0.65rem;
}

/* Pie del menú */
.menu-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    grid-column: 1 / -1;
}

.menu-footer p {
    margin: 0.5rem 0;
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .menu-container {
        padding: 0 1.5rem;
    }
    
    .menu-column.center {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .menu-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .menu-column.center {
        border: none;
        padding: 0;
        border-top: 1px solid #eee;
        padding-top: 2rem;
        margin-top: 2rem;
        grid-column: 1 / -1;
    }
    
    .menu-column.right {
        padding-left: 1rem;
    }
    
    .menu-column.left {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .menu-column.center {
        padding: 2rem 0 0 0;
        margin-top: 2rem;
        border-top: 1px solid #eee;
    }
    
    .menu-column.right {
        padding-left: 0;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #eee;
    }
    
    .menu-column.left {
        padding-right: 0;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price {
        margin: 0.3rem 0 0 0;
    }
    
    .signature {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
}

/* Sección de contacto */
.contact-section {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: #264653;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}
