/* styles.css */

:root {
    --verde-pastel: #A8D5BA;
    --verde-oscuro: #2C5F4A;
    --gris-claro: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}


/* Navbar lateral */

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--verde-oscuro);
    text-align: center;
}

.sidebar-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--verde-oscuro);
    text-align: center;

}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
}

.nav-links a:hover {
    background: var(--verde-pastel);
    color: white;
    transform: translateX(10px);
}

.sidebar-footer {
    margin-top: auto;
}



/* Hero */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), 
                url('img/imgfond.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.logo-hero {
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.subtitle {
    font-size: 1.4rem;
    letter-spacing: 4px;
    display: block;
    margin-top: -10px;
}

.hero-tagline {
    font-size: 1.35rem;
    margin: 1.5rem 0;
    font-weight: 400;
}

.btn-primary {
    background: var(--verde-oscuro);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(44, 95, 74, 0.3);
}

.btn-primary:hover {
    background: #1e4434;
    transform: translateY(-4px);
}


/* Secciones generales */

.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--gris-claro);
}

.bg-dark {
    background: #507563;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--verde-oscuro);
}

.light {
    color: white;
}


/* Cards menú */

.card-menu {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
}

.card-menu:hover {
    transform: translateY(-12px);
}

.card-menu img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 95, 74, 0.92));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.card-menu:hover .card-overlay {
    transform: translateY(0);
}


/* Swiper */

.swiper {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--verde-oscuro);
}


/* Historia */

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.historia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.historia-card h3 {
    color: var(--verde-oscuro);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}


/* Form comentarios */

.form-comentario {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-comentario input,
.form-comentario textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.comentarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comentario-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    animation: fadeInUp 0.6s backwards;
}


/* Botones flotantes */

.wa-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s;
}

.wa-flotante:hover {
    transform: scale(1.1);
}



/* Footer */

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 3rem 0;
    font-size: 0.95rem;
}


/* Responsive */

@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        width: 260px;
    }
}


/* Animaciones scroll */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 620px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.card-cafe {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-cafe:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(168, 213, 186, 0.25);
}

.card-img {
    position: relative;
    height: 260px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--verde-oscuro);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 1.8rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
    color: var(--verde-oscuro);
}

.card-body p {
    flex: 1;
    color: #555;
    line-height: 1.5;
    font-size: 1.02rem;
}

.card-footer {
    margin-top: 1rem;
}

.tag {
    background: #f0f7f3;
    color: var(--verde-oscuro);
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
}


/* Ajuste Swiper para que se vea más premium */

.cafeteria-swiper .swiper-slide {
    height: auto;
}

.cafeteria-swiper .swiper-button-next,
.cafeteria-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cafeteria-swiper .swiper-button-next:after,
.cafeteria-swiper .swiper-button-prev:after {
    font-size: 1.4rem;
    color: var(--verde-oscuro)
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 450x rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.social-circle img {
    display: block;
    margin: auto;
}
.social-circle img {
    display: block;
    margin: auto;
}

.social-icons {
    display: flex;
    justify-content: center;   /* Centrado */
    align-items: center;
    gap: 12px;                 /* Poco espacio entre iconos */
    margin-top: 10px;
}

.social-circle {
    width: 38px;               /* Más pequeño */
    height: 38px;
    border-radius: 50%;
    background-color: (255,255,255,255);    /* Cambia el color si quieres */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.social-circle img {
    width: 18px;               /* Icono más pequeño */
    height: 18px;
}

.social-circle:hover {
    transform: scale(1.1);     /* Pequeño efecto al pasar mouse */
}

/* =====================================
   COLLAGE CON EFECTO CORTINA (cortina que se abre)
   ===================================== */

.curtain-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 2.5rem auto 0;
    padding: 0 20px;
}

.curtain-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    aspect-ratio: 4 / 3;           /* puedes cambiar a 3/4, 1/1, etc. */
    background: #e8ecef;
}

.curtain-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--verde-oscuro);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.curtain-left {
    left: 0;
    transform: translateX(0);
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform: translateX(0);
    transform-origin: right;
}

.curtain-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
    z-index: 3;
    transition: opacity 0.5s ease 0.2s;
    pointer-events: none;
}

/* Hover - se abre la cortina */
.curtain-item:hover .curtain-left {
    transform: translateX(-100%);
}

.curtain-item:hover .curtain-right {
    transform: translateX(100%);
}

.curtain-item:hover .curtain-overlay {
    opacity: 0;
}

.curtain-item:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .curtain-collage {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .curtain-item {
        aspect-ratio: 16 / 10;
    }
    
    .curtain-overlay {
        font-size: 1.8rem;
    }
}

/* Opcional: en móviles desactivar o suavizar el efecto */
@media (hover: none) {
    .curtain-left, .curtain-right {
        transform: translateX(-100%) translateX(100%) !important; /* abierto por defecto */
    }
    .curtain-overlay {
        opacity: 0 !important;
    }
}

/* Estilo "Visual Food Magazine" – layout editorial puro texto */

.magazine-menu-page { background: #f9f7f2; font-family: 'Poppins', sans-serif; color: #2c2c2c; }

.magazine-hero {
    padding: 160px 0 120px;
    background: linear-gradient(rgba(44,95,74,0.15), rgba(44,95,74,0.25)), url('img/textura-papel-vintage.jpg') repeat; /* textura sutil opcional */
    text-align: center;
    color: var(--verde-oscuro);
}

.magazine-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 14vw, 11rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -2px;
    line-height: 0.9;
}

.magazine-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.lang-toggle .lang-btn {
    background: transparent;
    border: 2px solid var(--verde-oscuro);
    color: var(--verde-oscuro);
    padding: 12px 36px;
    margin: 0 18px;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.lang-toggle .lang-btn.active,
.lang-toggle .lang-btn:hover {
    background: var(--verde-oscuro);
    color: white;
}

.magazine-section {
    padding: 120px 0;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    color: var(--verde-oscuro);
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    letter-spacing: 1.5px;
}

.section-heading::after {
    content: '';
    width: 180px;
    height: 3px;
    background: var(--verde-pastel);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 80px 60px;
}

.magazine-entry {
    max-width: 620px;
    margin: 0 auto;
}

.magazine-entry h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--verde-oscuro);
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.entry-ingredients {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.entry-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a52a2a;
    display: block;
    text-align: right;
    letter-spacing: 1px;
}

.magazine-footer {
    background: var(--verde-oscuro);
    color: white;
    font-size: 1.1rem;
}

/* Responsive – estilo revista en móvil */
@media (max-width: 992px) {
    .magazine-grid { gap: 60px 40px; }
}

@media (max-width: 768px) {
    .magazine-hero { padding: 120px 0 80px; }
    .magazine-hero h1 { font-size: clamp(4.5rem, 13vw, 7.5rem); }
    .section-heading { font-size: 3.2rem; margin-bottom: 4rem; }
    .entry-price { text-align: left; margin-top: 1rem; font-size: 1.6rem; }
}

#galeria-principal {
    display: flex;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

/* Imágenes */
#galeria-principal img {
    flex: 1;
    width: 0;
    object-fit: cover;
    opacity: 0.8;
    transition: 
        flex 0.6s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}

/* Hover suave */
#galeria-principal img:hover {
    flex: 3;
    opacity: 1;
    filter: contrast(120%);
    cursor: pointer;
}
#galeria-principal {
    display: flex;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

/* Contenedor individual */
#galeria-principal .item {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

/* Imagen */
#galeria-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

/* Overlay translúcido */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* negro translúcido */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

/* Hover */
.item:hover .overlay {
    opacity: 1;
}

.item:hover img {
    transform: scale(1.1);
}

/* Comentarios fake estilo Disqus exacto (cuadrado azul con letra blanca) */
.comentario-disqus {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comentario-disqus:last-child {
    border-bottom: none;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    background: #e0e0e0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar.inicial {
    background: #0a66c2; /* azul muy similar al de Disqus */
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* ligeramente redondeado como Disqus */
    border: 1px solid #0858a8;
}

.content .header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.content strong {
    font-size: 1.05rem;
    color: #000cf3;
}

.content small {
    color: #606060;
    font-size: 0.85rem;
    margin-left: 8px;
}

.content p {
    font-size: 0.98rem;
    color: #111;
    line-height: 1.5;
    margin: 0.3rem 0 0.6rem;
}

.content .actions {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #606060;
}

.content .actions span {
    margin-right: 12px;
    cursor: pointer;
}

.content .actions span:hover {
    color: #000cf3;
}

/* Ajustes para que la sidebar muestre todo con scroll */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* evita desbordes */
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sidebar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--verde-oscuro);
    margin-bottom: 0.3rem;
}

.sidebar-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Lista con scroll si es muy larga */
.nav-links {
    list-style: none;
    flex: 1;
    overflow-y: auto;          /* ¡Esto permite scroll! */
    padding-right: 10px;       /* espacio para scrollbar */
    margin-bottom: 1rem;
}

/* Oculta scrollbar en WebKit pero mantiene funcionalidad */
.nav-links::-webkit-scrollbar {
    width: 6px;
}

.nav-links::-webkit-scrollbar-thumb {
    background: var(--verde-pastel);
    border-radius: 10px;
}

.nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 10px;
}

.nav-links a:hover {
    background: var(--verde-pastel);
    color: white;
    transform: translateX(8px);
}

/* Horario destacado */
.horario-item .nav-link {
    color: var(--verde-oscuro);
    font-weight: 600;
    background: rgba(168, 213, 186, 0.12);
    cursor: default;
}

.horario-item .nav-link:hover {
    background: rgba(168, 213, 186, 0.2);
    transform: none;
}

.horario-item small {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* Footer siempre abajo */
.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Ajustes móviles */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
    }
    .nav-links {
        padding-right: 0;
    }
}

/* Scroll suave en toda la página */
html {
    scroll-behavior: smooth !important;
}

/* Opcional: animación sutil al llegar a la sección (fade-in + leve elevación) */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight temporal al llegar (opcional) */
.section:target {
    animation: highlightSection 1.5s ease-in-out;
}

@keyframes highlightSection {
    0% { background: rgba(168, 213, 186, 0.15); }
    50% { background: rgba(168, 213, 186, 0.3); }
    100% { background: transparent; }
}
/* Enlace pequeño debajo del footer principal */
.footer-links {
    font-size: 0.9rem;
}

.footer-link-small {
    color: #777;
    text-decoration: none;
    transition: color 1.5s;
}

.footer-link-small:hover {
    color: var(--verde-oscuro);
    text-decoration: underline;
}

/* styles.css */

:root {
    --verde-pastel: #A8D5BA;
    --verde-oscuro: #2C5F4A;
    --gris-claro: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}


/* Navbar lateral */

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--verde-oscuro);
    text-align: center;
}

.sidebar-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--verde-oscuro);
    text-align: center;

}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
}

.nav-links a:hover {
    background: var(--verde-pastel);
    color: white;
    transform: translateX(10px);
}

.sidebar-footer {
    margin-top: auto;
}


/* Hamburger */

.hamburger {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1100;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.sidebar.active~.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar.active~.hamburger span:nth-child(2) {
    opacity: 0;
}

.sidebar.active~.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Hero */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), 
                url('img/imgfond.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.logo-hero {
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.subtitle {
    font-size: 1.4rem;
    letter-spacing: 4px;
    display: block;
    margin-top: -10px;
}

.hero-tagline {
    font-size: 1.35rem;
    margin: 1.5rem 0;
    font-weight: 400;
}

.btn-primary {
    background: var(--verde-oscuro);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(44, 95, 74, 0.3);
}

.btn-primary:hover {
    background: #1e4434;
    transform: translateY(-4px);
}


/* Cards menú */

.card-menu {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
}

.card-menu:hover {
    transform: translateY(-12px);
}

.card-menu img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 95, 74, 0.92));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.card-menu:hover .card-overlay {
    transform: translateY(0);
}


/* Swiper */

.swiper {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--verde-oscuro);
}


/* Historia */

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.historia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.historia-card h3 {
    color: var(--verde-oscuro);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}


/* Form comentarios */

.form-comentario {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-comentario input,
.form-comentario textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.comentarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comentario-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    animation: fadeInUp 0.6s backwards;
}



/* Responsive */

@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        width: 260px;
    }
}


/* Animaciones scroll */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 620px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.card-cafe {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-cafe:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(168, 213, 186, 0.25);
}

.card-img {
    position: relative;
    height: 260px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--verde-oscuro);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 1.8rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
    color: var(--verde-oscuro);
}

.card-body p {
    flex: 1;
    color: #555;
    line-height: 1.5;
    font-size: 1.02rem;
}

.card-footer {
    margin-top: 1rem;
}

.tag {
    background: #f0f7f3;
    color: var(--verde-oscuro);
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
}


/* Ajuste Swiper para que se vea más premium */

.cafeteria-swiper .swiper-slide {
    height: auto;
}

.cafeteria-swiper .swiper-button-next,
.cafeteria-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cafeteria-swiper .swiper-button-next:after,
.cafeteria-swiper .swiper-button-prev:after {
    font-size: 1.4rem;
    color: var(--verde-oscuro)
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 450x rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.social-circle img {
    display: block;
    margin: auto;
}
.social-circle img {
    display: block;
    margin: auto;
}

.social-icons {
    display: flex;
    justify-content: center;   /* Centrado */
    align-items: center;
    gap: 12px;                 /* Poco espacio entre iconos */
    margin-top: 10px;
}

.social-circle {
    width: 38px;               /* Más pequeño */
    height: 38px;
    border-radius: 50%;
    background-color: (255,255,255,255);    /* Cambia el color si quieres */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.social-circle img {
    width: 18px;               /* Icono más pequeño */
    height: 18px;
}

.social-circle:hover {
    transform: scale(1.1);     /* Pequeño efecto al pasar mouse */
}

/* =====================================
   COLLAGE CON EFECTO CORTINA (cortina que se abre)
   ===================================== */

.curtain-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 2.5rem auto 0;
    padding: 0 20px;
}

.curtain-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    aspect-ratio: 4 / 3;           /* puedes cambiar a 3/4, 1/1, etc. */
    background: #e8ecef;
}

.curtain-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--verde-oscuro);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.curtain-left {
    left: 0;
    transform: translateX(0);
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform: translateX(0);
    transform-origin: right;
}

.curtain-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
    z-index: 3;
    transition: opacity 0.5s ease 0.2s;
    pointer-events: none;
}

/* Hover - se abre la cortina */
.curtain-item:hover .curtain-left {
    transform: translateX(-100%);
}

.curtain-item:hover .curtain-right {
    transform: translateX(100%);
}

.curtain-item:hover .curtain-overlay {
    opacity: 0;
}

.curtain-item:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .curtain-collage {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .curtain-item {
        aspect-ratio: 16 / 10;
    }
    
    .curtain-overlay {
        font-size: 1.8rem;
    }
}

/* Opcional: en móviles desactivar o suavizar el efecto */
@media (hover: none) {
    .curtain-left, .curtain-right {
        transform: translateX(-100%) translateX(100%) !important; /* abierto por defecto */
    }
    .curtain-overlay {
        opacity: 0 !important;
    }
}

/* Estilo "Visual Food Magazine" – layout editorial puro texto */

.magazine-menu-page { background: #f9f7f2; font-family: 'Poppins', sans-serif; color: #2c2c2c; }

.magazine-hero {
    padding: 160px 0 120px;
    background: linear-gradient(rgba(44,95,74,0.15), rgba(44,95,74,0.25)), url('img/textura-papel-vintage.jpg') repeat; /* textura sutil opcional */
    text-align: center;
    color: var(--verde-oscuro);
}

.magazine-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 14vw, 11rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -2px;
    line-height: 0.9;
}

.magazine-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.lang-toggle .lang-btn {
    background: transparent;
    border: 2px solid var(--verde-oscuro);
    color: var(--verde-oscuro);
    padding: 12px 36px;
    margin: 0 18px;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.lang-toggle .lang-btn.active,
.lang-toggle .lang-btn:hover {
    background: var(--verde-oscuro);
    color: white;
}

.magazine-section {
    padding: 120px 0;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    color: var(--verde-oscuro);
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    letter-spacing: 1.5px;
}

.section-heading::after {
    content: '';
    width: 180px;
    height: 3px;
    background: var(--verde-pastel);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 80px 60px;
}

.magazine-entry {
    max-width: 620px;
    margin: 0 auto;
}

.magazine-entry h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--verde-oscuro);
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.entry-ingredients {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.entry-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a52a2a;
    display: block;
    text-align: right;
    letter-spacing: 1px;
}

.magazine-footer {
    background: var(--verde-oscuro);
    color: white;
    font-size: 1.1rem;
}

/* Responsive – estilo revista en móvil */
@media (max-width: 992px) {
    .magazine-grid { gap: 60px 40px; }
}

@media (max-width: 768px) {
    .magazine-hero { padding: 120px 0 80px; }
    .magazine-hero h1 { font-size: clamp(4.5rem, 13vw, 7.5rem); }
    .section-heading { font-size: 3.2rem; margin-bottom: 4rem; }
    .entry-price { text-align: left; margin-top: 1rem; font-size: 1.6rem; }
}

#galeria-principal {
    display: flex;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

/* Imágenes */
#galeria-principal img {
    flex: 1;
    width: 0;
    object-fit: cover;
    opacity: 0.8;
    transition: 
        flex 0.6s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}

/* Hover suave */
#galeria-principal img:hover {
    flex: 3;
    opacity: 1;
    filter: contrast(120%);
    cursor: pointer;
}
#galeria-principal {
    display: flex;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

/* Contenedor individual */
#galeria-principal .item {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

/* Imagen */
#galeria-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

/* Overlay translúcido */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* negro translúcido */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

/* Hover */
.item:hover .overlay {
    opacity: 1;
}

.item:hover img {
    transform: scale(1.1);
}

/* Comentarios fake estilo Disqus exacto (cuadrado azul con letra blanca) */
.comentario-disqus {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comentario-disqus:last-child {
    border-bottom: none;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    background: #e0e0e0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar.inicial {
    background: #0a66c2; /* azul muy similar al de Disqus */
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* ligeramente redondeado como Disqus */
    border: 1px solid #0858a8;
}

.content .header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.content strong {
    font-size: 1.05rem;
    color: #000cf3;
}

.content small {
    color: #606060;
    font-size: 0.85rem;
    margin-left: 8px;
}

.content p {
    font-size: 0.98rem;
    color: #111;
    line-height: 1.5;
    margin: 0.3rem 0 0.6rem;
}

.content .actions {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #606060;
}

.content .actions span {
    margin-right: 12px;
    cursor: pointer;
}

.content .actions span:hover {
    color: #000cf3;
}

/* Ajustes para que la sidebar muestre todo con scroll */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* evita desbordes */
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sidebar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--verde-oscuro);
    margin-bottom: 0.3rem;
}

.sidebar-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Lista con scroll si es muy larga */
.nav-links {
    list-style: none;
    flex: 1;
    overflow-y: auto;          /* ¡Esto permite scroll! */
    padding-right: 10px;       /* espacio para scrollbar */
    margin-bottom: 1rem;
}

/* Oculta scrollbar en WebKit pero mantiene funcionalidad */
.nav-links::-webkit-scrollbar {
    width: 6px;
}

.nav-links::-webkit-scrollbar-thumb {
    background: var(--verde-pastel);
    border-radius: 10px;
}

.nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 10px;
}

.nav-links a:hover {
    background: var(--verde-pastel);
    color: white;
    transform: translateX(8px);
}

/* Horario destacado */
.horario-item .nav-link {
    color: var(--verde-oscuro);
    font-weight: 600;
    background: rgba(168, 213, 186, 0.12);
    cursor: default;
}

.horario-item .nav-link:hover {
    background: rgba(168, 213, 186, 0.2);
    transform: none;
}

.horario-item small {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* Footer siempre abajo */
.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Ajustes móviles */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
    }
    .nav-links {
        padding-right: 0;
    }
}

/* Scroll suave en toda la página */
html {
    scroll-behavior: smooth !important;
}

/* Opcional: animación sutil al llegar a la sección (fade-in + leve elevación) */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight temporal al llegar (opcional) */
.section:target {
    animation: highlightSection 1.5s ease-in-out;
}

@keyframes highlightSection {
    0% { background: rgba(168, 213, 186, 0.15); }
    50% { background: rgba(168, 213, 186, 0.3); }
    100% { background: transparent; }
}
/* Enlace pequeño debajo del footer principal */
.footer-links {
    font-size: 0.9rem;
}

.footer-link-small {
    color: #777;
    text-decoration: none;
    transition: color 1.5s;
}

.footer-link-small:hover {
    color: var(--verde-oscuro);
    text-decoration: underline;
}

/* Botón flotante inferior derecha */
.menu-flotante {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
    transition: all 0.4s ease;
}

.btn-menu-flotante {
    background: var(--verde-oscuro);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(44,95,74,0.35);
    transition: all 0.4s ease;
}

.btn-menu-flotante:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(44,95,74,0.5);
}

.btn-menu-flotante i {
    font-size: 1.3rem;
}

/* Cuando la sidebar está abierta: contraer y mover el botón */
.sidebar.active ~ .menu-flotante {
    transform: translateX(-280px) scale(0.85); /* mueve a la izquierda y reduce tamaño */
    opacity: 0.85;
}

/* Responsivo en móvil */
@media (max-width: 768px) {
    .menu-flotante {
        bottom: 20px;
        left: 20px;
    }

    .btn-menu-flotante {
        padding: 14px 24px;
        font-size: 1rem;
        gap: 10px;
    }

    /* En móvil la sidebar es más estrecha, ajustamos menos */
    .sidebar.active ~ .menu-flotante {
        transform: translateX(-260px) scale(0.9);
    }
}

/* LOGO SIDEBAR */
.logo-sidebar{
    width:140px;
    margin-bottom:30px;
}

/*logo index*/
.logo-hero{
    display: flex;
    flex-direction: column;   /* pone el logo arriba y texto abajo */
    align-items: center;      /* centra horizontalmente */
    justify-content: center;
    text-align: center;
}

.header-logo{
    max-height: 500px;
    width: auto;
    display: block;
}

/*logo menu*/
.logo-heromenu{
    align-items: center;      /* centra horizontalmente */
    justify-content: center;
    text-align: center;
}

.header-logomenu{
    max-height: 200px;
    width: auto;
    display: block;
}

/*logo barra lateral*/
.logo-herobarra{
    align-items: center;      /* centra horizontalmente */
    justify-content: center;
    text-align: center;
}
.header-logobarra{
    max-height: 100px;
    width: auto;
    display: block;
}

/*logo menu*/
.promo-container{
    width: 100%;
    text-align: center; /* centra todo lo que esté dentro */
}

.promo-link{
    display: inline-block;
}

.header-promo{
    max-height: 210px;
    width: auto;
}

.promo-container{
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.promo-icon {
    width:60px;           /* ajusta el tamaño */
    height: 60px;
    object-fit: contain;
    vertical-align: middle;
}

.promocion-horario {
    color: white;
    font-size: 1rem;
    margin-top: 12px;
    line-height: 1.6;
    opacity: 0.95;
}

.promocion-horario i {
    color: #ffd700;
    margin-right: 8px;
}

.promo-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44,95,74,0.18);
}

/* contenedor de imagen cuadrada */
.promo-image{
    width: 100%;
    max-width: 320px; /* controla el tamaño */
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 15px auto; /* centra la imagen */
}

/* imagen dentro */
.promo-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOTÓN VOLVER ARRIBA CON PROGRESO */

.btn-arriba{
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: conic-gradient(#2C5F4A 0%, #dcdcdc 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.btn-arriba:hover{
    transform: scale(1.1);
}

/* círculo interno */

.btn-arriba::before{
    content:"";
    position:absolute;
    width:42px;
    height:42px;
    background:white;
    border-radius:50%;
}

.btn-arriba i{
    position:relative;
    color:#2C5F4A;
    font-size:18px;
}

.btn-arriba{
    display:none;
}


 /* Botón de regreso superior izquierdo - FIJO */
        .btn-regreso-top {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background: rgba(30,42,36,0.85); /* mismo tono oscuro que hero/reservaciones */
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .btn-regreso-top:hover {
            background: #1e2a24;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
        }

        .btn-regreso-top i {
            font-size: 1.3rem;
        }

    @media (max-width: 768px) {
            .conoce-hero { padding: 100px 20px 70px; }
            .conoce-hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
            .hero-subtitle { font-size: 1.4rem; }
            .btn-regreso-top {
                top: 15px;
                left: 15px;
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        /* SECCIÓN RESERVA */

.reserva-section{
    max-width:600px;
    margin:80px auto;
    padding:40px;
    background:white;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.1);
    border-top:6px solid #2C5F4A;
}

/* título */

.reserva-section h2{
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:2rem;
    margin-bottom:25px;
    color:#2C5F4A;
}

/* formulario */

#formReserva{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

/* inputs */

#formReserva input{
    width:100%;
    padding:14px 16px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
    transition:all 0.3s ease;
}

/* inputs al enfocar */

#formReserva input:focus{
    border-color:#2C5F4A;
    outline:none;
    box-shadow:0 0 0 3px rgba(44,95,74,0.15);
}

/* campos grandes */

#hora,
#tipo{
    grid-column:span 1;
}

/* botón */

#formReserva button{
    grid-column:span 2;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#25D366;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.3s ease;
}

/* hover botón */

#formReserva button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,211,102,0.4);
}

/* responsive */

@media (max-width:600px){

#formReserva{
    grid-template-columns:1fr;
}

#formReserva button{
    grid-column:span 1;
}

}

.reservaciones-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px auto;
}

.reservaciones-text{
    font-size:1.1rem;
    color:#ddd;
    margin-top:10px;
}