    @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

/* Y luego las aplicas así: */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Finito como tu logo */
    text-transform: uppercase;
}

.nav-links a, h1, h2 {
    font-family: 'Lato', sans-serif;
}
    :root{
      --primary:#9d1d1d;
      --secondary:#d4af37;
      --dark:#111;
      --light:#fff9f2;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:var(--light);
      color:#333;
    }

    header{
      height:100vh;
      background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url('https://images.unsplash.com/photo-1617093727343-374698b1b08d?auto=format&fit=crop&w=1400&q=80')
        center/cover no-repeat;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:white;
      padding:20px;
    }

    .hero h1{
      font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Finito como tu logo */
    text-transform: uppercase;
      font-size:4rem;
      margin-bottom:15px;
      letter-spacing:2px;
    }

    .hero p{
      font-size:1.3rem;
      margin-bottom:30px;
    }

    .btn{
      display:inline-block;
      padding:15px 35px;
      background:var(--primary);
      color:white;
      text-decoration:none;
      border-radius:50px;
      font-weight:600;
      transition:.3s;
    }

    .btn:hover{
      background:#7e1515;
      transform:translateY(-3px);
    }

    section{
      padding:80px 10%;
    }

    h2{
      text-align:center;
      font-family:'Playfair Display', serif;
      font-size:2.5rem;
      color:var(--primary);
      margin-bottom:25px;
    }

    .about p{
      max-width:850px;
      margin:auto;
      text-align:center;
      line-height:1.8;
      font-size:1.1rem;
    }

    .menu-grid,.review-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:25px;
      margin-top:40px;
    }

    .card{
      background:white;
      padding:25px;
      border-radius:18px;
      box-shadow:0 10px 25px rgba(0,0,0,.08);
      transition:.3s;
    }

    .card:hover{
      transform:translateY(-8px);
    }

    .card h3{
      color:var(--primary);
      margin-bottom:10px;
    }

    .price{
      color:var(--secondary);
      font-weight:700;
      margin-top:10px;
    }

    
    .contact{
      text-align:center;
      line-height:2;
      font-size:1.1rem;
    }

    iframe{
      width:100%;
      height:420px;
      border:none;
      border-radius:18px;
      margin-top:25px;
    }

    footer{
      background:var(--dark);
      color:white;
      text-align:center;
      padding:30px;
      margin-top:40px;
    }

    .whatsapp{
      position:fixed;
      bottom:20px;
      right:20px;
      background:#25D366;
      color:white;
      padding:16px 18px;
      border-radius:50%;
      font-size:24px;
      text-decoration:none;
      box-shadow:0 6px 18px rgba(0,0,0,.25);
    }

    @media(max-width:768px){
      .hero h1{
        font-size:2.8rem;
      }
    }
    .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bcd4; /* Color de acento al pasar el cursor */
}

/* --- DISEÑO DE LA GALERÍA --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- INTERFAZ DEL LIGHTBOX --- */
.lightbox {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 4px;
    animation: zoom 0.3s ease;
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #bbb;
}
.contenedor-flex {
  display: flex;
  align-items: center; /* Alinea el texto y la foto verticalmente por el centro */
  gap: 15px; /* Espacio entre la foto y el texto */
}

/* Opcional: Para asegurar que la imagen no sea demasiado grande */
.contenedor-flex img {
  width: 100px; 
  height: auto;
}
.contacto-container {
            max-width: 400px;
            margin: 20px auto;
            padding: 25px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .contacto-container h2 {
            margin-top: 0;
            color: var(--primary-color);
            text-align: center;
            font-size: 24px;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #555;
        }

        .info-item i {
            width: 30px;
            font-size: 18px;
            color: var(--accent-color);
            text-align: center;
            margin-right: 15px;
        }

        .redes-sociales {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .redes-sociales a {
            font-size: 24px;
            color: #666;
            transition: transform 0.2s, color 0.2s;
        }

        /* Colores de marca al pasar el cursor */
        .redes-sociales a:hover {
            transform: translateY(-3px);
        }
        .redes-sociales .fa-facebook:hover { color: #1877F2; }
        .redes-sociales .fa-instagram:hover { color: #E1306C; }
        .redes-sociales .fa-tiktok:hover { color: #000000; }
/* Animación de apertura */
@keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* --- ESTILOS PARA MÓVIL --- */
.menu-toggle {
    display: none;
    background: transparent; /* Quita el fondo blanco por defecto */
    border: none;            /* Quita el borde por defecto */
    cursor: pointer;
    padding: 5px;
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

/* Media Query para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Muestra el icono de hamburguesa */
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%; /* Oculto a la izquierda */
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.5s;
    }

    .nav-links.active {
        left: 0; /* Desliza el menú hacia adentro */
    }

    .nav-links li {
        margin: 20px 0;
    }
}
