* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* IMÁGENES (estas sí funcionan) */
.slide:nth-child(1) {
  background-image: url('https://res.cloudinary.com/dqr5t4att/image/upload/f_auto,q_auto/Imagen1_qwgbi9');
}

.slide:nth-child(2) {
  background-image: url('https://res.cloudinary.com/dqr5t4att/image/upload/f_auto,q_auto/Imagen2_o9dtpq');
}

.slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1655834163776-d1ae86e8c1e2?q=80&w=1176&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

/* ACTIVA */
.slide.active {
  opacity: 1;
}

/* OSCURECER */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* TEXTO */
.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 50px;
}

.hero-content h2 {
  font-size: 32px;
  margin: 10px 0;
}

.hero-content p {
  margin-bottom: 20px;
}

.btn {
  background: #c0392b;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}

/* CONTENEDOR */
.stats-container {
  position: relative;
  display: flex;
  justify-content: center; /* 👈 clave */
  gap: 60px; /* 👈 controla espacio */
  align-items: center;
  flex-wrap: wrap;
}

/* LOGO */
.logo img {
  height: 120px;
}

/* NAV */
.nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #f39c12;
}
.logo img {
  height: 100px;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.8));
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

/* LOGO */
.logo img {
  height: 90px;
}

/* NAV CENTRADO */
.nav {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav a:hover {
  color: #f39c12;
}

/* CONTACTO DERECHA */
.contact {
  color: #f39c12;
  font-weight: bold;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 768px) {

  /* CONTENEDOR */
  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  /* LOGO CENTRADO */
  .logo {
    text-align: center;
  }

  .logo img {
    height: 70px;
  }

  /* MENÚ CENTRADO */
  .nav {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav a {
  font-size: 20px !important;
  font-weight: 600;
  letter-spacing: 2px;
  }

  /* CONTACTO CENTRADO */
  .contact {
    text-align: center;
    font-size: 12px;
  }
  .nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #f39c12;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

}
.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f39c12;
  font-weight: 600;
}

/* ICONO */
.contact i {
  font-size: 20px;
  background: #f39c12;
  color: black;
  padding: 10px;
  border-radius: 50%;

  /* EFECTO */
  animation: pulse 1.5s infinite;
}

/* ANIMACIÓN */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
  }
}
.contact:hover i {
  transform: scale(1.1);
  transition: 0.3s;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #25D366;
  color: white;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 28px;

  text-decoration: none;
  z-index: 1000;

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  transition: 0.3s;
}

/* HOVER */
.whatsapp:hover {
  transform: scale(1.1);
}

/* EFECTO PULSO */
.whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  letter-spacing: 2px;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.hero-content p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
.hero-content h1 {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 70px;
  color: #f5d6a1;
  text-shadow: 
    2px 2px 5px rgba(0,0,0,0.8),
    0px 0px 10px rgba(255, 200, 100, 0.3);
}
/* LOGO MÁS GRANDE */
.header .logo img {
  height: 120px !important;
}
/* ===== FIX TOPBAR DISTRIBUCIÓN ===== */

/* CONTENEDOR */
.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

/* MENÚ CENTRADO SIN EMPUJAR */
.header .nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  display: flex;
  justify-content: space-between;
}

/* CONTACTO AJUSTADO */
.header .contact {
  margin-right: 30px;
  white-space: nowrap;
}

/* ===== MOBILE CENTRADO ===== */
@media (max-width: 768px) {

  /* CONTENEDOR GENERAL */
  .header .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  /* LOGO */
  .logo {
    text-align: center;
  }

  .logo img {
    height: 80px;
  }

  /* MENÚ */
  .nav {
    position: static !important;
    transform: none !important;
    width: 100% !important;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav a {
    font-size: 16px !important;
  }

  /* CONTACTO */
  .contact {
    text-align: center;
    margin: 0;
  }

  /* HERO TEXTO */
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* BOTÓN */
  .btn {
    display: inline-block;
    margin-top: 10px;
  }

}
.about {
  background: #0b0f14;
  padding: 80px 10%;
  color: white;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGEN CONTROLADA */
.about-img {
  flex: 1;
  max-width: 500px;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

/* TEXTO */
.about-text {
  flex: 1;
}
.hidden-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateX(0);
}
.about-img img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* ===== FIX DIVIDER SIN FONDO BLANCO ===== */

.divider {
  width: 100% !important;
  overflow: hidden !important;
  line-height: 0 !important;

  position: relative !important;
  top: -80px !important;
  margin-bottom: -80px !important;

  background: transparent !important;
  z-index: 10;
}

.divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

.divider path {
  fill: #0b0f14;
}

/* ELIMINA ESPACIOS DE SECCIONES */

/* ===== FIX FINAL REAL ===== */

/* cada sección controla su propio espacio */
.featured,
.gallery,
.stats,
.menu,
.about {
  padding: 80px 0;
}

/* evitar cortes visuales */
.featured {
  padding-bottom: 120px;
}

.gallery {
  padding-top: 120px;
}
/* ===== ELIMINAR CUALQUIER ESPACIO BLANCO ===== */

/* RESET GENERAL */
body, html {
  margin: 0 !important;
  padding: 0 !important;
}

/* HERO (o sección de arriba) */
.hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* IMÁGENES (MUY IMPORTANTE) */
img {
  display: block; /* 👈 esto elimina espacio fantasma */
}

/* DIVIDER */
.divider {
  width: 100% !important;
  overflow: hidden !important;
  line-height: 0 !important;

  position: relative !important;
  top: -120px !important; /* 👈 súbelo más */
  margin-bottom: -120px !important;

  background: transparent !important;
  z-index: 10;
}

/* SVG */
.divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* PATH */
.divider path {
  fill: #0b0f14;
}
/* ===== MISMA FUENTE DEL HERO EN ABOUT ===== */

.about-text h2 {
  font-family: 'Great Vibes', cursive !important;
  font-size: 50px;
  letter-spacing: 2px;
  color: #f5d6a1;
}
/* ===== EFECTO TOPBAR DIFUMINADO ===== */

.header.scrolled {
  background: rgba(0, 0, 0, 0.4); /* semi transparente */
  backdrop-filter: blur(10px); /* 👈 efecto glass */
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* sombra suave */
}


/* ===== OCULTAR TOPBAR EN MÓVIL ===== */

.header .nav a {
  font-family: 'Playfair Display', serif !important;
  font-size: 18px;
  letter-spacing: 1px;
}
.menu {
  background: #0b0f14;
  padding: 80px 10%;
  color: white;
  text-align: center;
}

.menu-title {
  font-size: 40px;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
}

/* GRID */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.menu-card {
  background: #1a1f25;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* INFO */
.menu-info {
  padding: 20px;
}

.menu-info h3 {
  margin-bottom: 10px;
}

.menu-info p {
  color: #f39c12;
  font-weight: bold;
}

/* HOVER */
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
/* ===== SECCIÓN DESTACADOS ===== */

.featured {
  position: relative;
  padding: 100px 10%;
  color: white;
  text-align: center;

  /* 👇 FONDO */
  background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1974&auto=format&fit=crop') no-repeat center/cover;

  background-attachment: fixed; /* 👈 EFECTO PRO */
}

/* OVERLAY OSCURO */
.featured .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* CONTENIDO */
.featured-content {
  position: relative;
  z-index: 2;
}

/* TITULO */
.featured h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

/* CARDS */
.featured-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.featured-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.featured-card:hover {
  transform: translateY(-10px);
}
/* ===== AJUSTE CARDS FEATURED ===== */

.featured-card {
  width: 220px !important;  /* 👈 tamaño controlado */
  padding: 20px !important;
}

.featured-card img {
  height: 140px !important;
  object-fit: cover;
}

.featured-card h3 {
  font-size: 18px;
}

.featured-card p {
  font-size: 14px;
}
.menu {
  padding-bottom: 120px !important;
}
/* ===== MOBILE MENU + FEATURED ===== */

@media (max-width: 768px) {

  /* ===== SECCIÓN MENU ===== */
  .menu {
    padding: 60px 20px !important;
    padding-bottom: 100px !important;
    text-align: center;
  }

  .menu-container {
    grid-template-columns: 1fr !important; /* 1 columna */
    gap: 20px;
  }

  .menu-card {
    width: 100% !important;
  }

  .menu-card img {
    height: 180px;
  }

  /* ===== SECCIÓN FEATURED ===== */
  .featured {
    padding: 80px 20px;
    background-attachment: scroll; /* 👈 importante para móvil */
  }

  .featured-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* CARDS MÁS PEQUEÑAS */
  .featured .menu-card {
    width: 90% !important;
    max-width: 300px;
  }

  /* TEXTO */
  .featured h2 {
    font-size: 28px;
  }

}
/* ===== GALERÍA ===== */

.gallery {
  background: #0b0f14;
  padding: 80px 10%;
  text-align: center;
  color: white;
}

.gallery-sub {
  color: #f39c12;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 40px;
  margin-bottom: 50px;
}

/* GRID */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.gallery-card {
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGEN */
.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER */
.gallery-card:hover img {
  transform: scale(1.1);
}
/* ===== GALERÍA AJUSTADA PRO ===== */

.gallery-container {
  grid-template-columns: repeat(3, 220px); /* 👈 tamaño fijo */
  justify-content: center; /* centrar */
  gap: 20px;
}

/* CARD */
.gallery-card {
  width: 220px;
  height: 220px;
  border-radius: 15px;
  overflow: hidden; /* 👈 mantiene bordes redondos */
}

/* IMAGEN */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-sub {
  font-family: 'Great Vibes', cursive !important;
  font-size: 30px;
  color: #f5d6a1;

  text-shadow: 
    2px 2px 5px rgba(0,0,0,0.8),
    0px 0px 10px rgba(255, 200, 100, 0.3);
}
/* ===== STATS PRO ===== */

.stats {
  position: relative;
  padding: 60px 10%;
  text-align: center;
  color: white;

  background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
}

/* OVERLAY MÁS OSCURO */
.stats-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  top: 0;
  left: 0;
}

/* CONTENEDOR */
.stats-container {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* NÚMEROS GRANDES */
.stat h2 {
  font-size: 42px;
  font-weight: bold;
}

/* TEXTO */
.stat p {
  font-size: 12px;
  color: #ccc;
  margin-top: 5px;
}
.stat h2 {
  color: white;
}

.stat h2::after {
  content: "+";
  color: #ffffff;
  margin-left: 5px;
}
.stat h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 1px;
}
/* ===== FIX ABOUT ===== */

.about {
  padding: 120px 10% 80px 10% !important;
}
/* ===== MISMA FUENTE HERO EN "LO MÁS PEDIDO" ===== */

.featured h2 {
  font-family: 'Great Vibes', cursive !important;
  font-size: 55px;
  color: #f5d6a1;

  text-shadow: 
    2px 2px 5px rgba(0,0,0,0.8),
    0px 0px 10px rgba(255, 200, 100, 0.3);
}
/* ===== MOBILE FULL CENTER ===== */
@media (max-width: 768px) {

  /* GENERAL */
  body {
    text-align: center;
  }

  section {
    padding: 60px 20px !important;
  }

  /* HERO */
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-img {
    max-width: 100%;
  }

  .about-text {
    text-align: center;
  }

  /* MENU */
  .menu-container {
    grid-template-columns: 1fr !important;
  }

  .menu-card {
    width: 100%;
  }

  /* FEATURED */
  .featured-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .featured-card {
    width: 90% !important;
  }

  /* GALERÍA */
  .gallery-container {
    grid-template-columns: 1fr !important;
    justify-content: center;
  }

  .gallery-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* STATS */
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  /* TITULOS */
  h2 {
    font-size: 28px !important;
  }

  h1 {
    font-size: 40px !important;
  }

  /* BOTÓN */
  .btn {
    display: inline-block;
    margin-top: 15px;
  }
}
/* ===== FAQ ===== */

.faq {
  background: #0b0f14;
  padding: 80px 10%;
  color: white;
  text-align: center;
}

.faq-sub {
  color: #f39c12;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 40px;
  margin-bottom: 50px;
}

/* CONTENEDOR */
.faq-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGEN */
.faq-img {
  flex: 1;
}

.faq-img img {
  width: 100%;
  border-radius: 20px;
}

/* LISTA */
.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.faq-item {
  border: 1px solid #f39c12;
  border-radius: 10px;
  overflow: hidden;
}

/* PREGUNTA */
.faq-question {
  width: 100%;
  background: #1a1f25;
  color: white;
  padding: 15px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.faq-question:hover {
  background: #222831;
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #111;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 15px;
  font-size: 14px;
}
/* ===== FAQ CON FUENTE DEL HERO ===== */

.faq-title {
  font-family: 'Great Vibes', cursive !important;
  font-size: 55px;
  color: #f5d6a1;

  text-shadow: 
    2px 2px 5px rgba(0,0,0,0.8),
    0px 0px 10px rgba(255, 200, 100, 0.3);
}
/* ===== FOOTER BOTTOM PRO ===== */

.footer-bottom {
  background: #000 !important;
  color: white !important;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  letter-spacing: 1px;

  border-top: 1px solid rgba(255,255,255,0.1);
}
/* ===== FOOTER FIX TOTAL ===== */

.footer {
  position: relative;
  background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
  color: white;
  padding: 80px 10% 0 10%;
}

/* overlay oscuro */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1;
}

/* CONTENIDO */
.footer-container {
  position: relative;
  z-index: 2;
}

/* GRID REAL */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* COLUMNAS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

/* LINKS */
.footer-col a:hover {
  color: #f39c12;
}

/* LOGO */
.footer-logo img {
  width: 150px;
  margin-bottom: 30px;
}

/* REDES */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social img {
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.footer-social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #f39c12);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* ===== FIX COPYRIGHT VISIBLE ===== */

.footer-bottom {
  position: relative;
  z-index: 5; /* 👈 más alto que el overlay */
}
/* ===== FOOTER NUEVA ESTRUCTURA ===== */

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* IZQUIERDA */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO */
.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

/* REDES */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social img {
  width: 35px;
  transition: 0.3s;
}

.footer-social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #f39c12);
}

/* DERECHA */
.footer-right {
  display: flex;
  gap: 60px;
}

/* COLUMNAS */
.footer-col {
  min-width: 180px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }

}
/* ===== ICONOS CON MARCO PRO ===== */

.footer-social a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #f39c12;
  border-radius: 50%;

  transition: 0.3s;
}

/* IMAGEN DENTRO */
.footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* HOVER PRO */
.footer-social a:hover {
  background: #f39c12;
  transform: scale(1.15);

  box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
}

/* ICONO BLANCO AL HOVER */
.footer-social a:hover img {
  filter: brightness(0) invert(1);
}
/* ===== AJUSTE POSICIÓN ICONOS ===== */

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* 👈 reduce espacio */
}

/* quitar margen extra del logo */
.footer-logo img {
  margin-bottom: 5px !important;
}

/* ===== ICONOS SIEMPRE VISIBLES ===== */

.footer-social a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #f39c12;
  border-radius: 50%;

  background: rgba(255,255,255,0.1); /* 👈 clave */

  transition: 0.3s;
}

/* ICONOS VISIBLES SIEMPRE */
.footer-social img {
  width: 20px;
  height: 20px;

  filter: brightness(0) invert(1); /* 👈 los vuelve blancos SIEMPRE */
}

/* HOVER */
.footer-social a:hover {
  background: #f39c12;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
}

/* HOVER ICONO */
.footer-social a:hover img {
  filter: brightness(0) invert(1);
}
/* ===== SUBIR LOGO + ICONOS ===== */

.footer-content {
  align-items: flex-start !important; /* 👈 clave */
}

/* IZQUIERDA MÁS ARRIBA */
.footer-left {
  align-items: center;
  justify-content: flex-start;
  margin-top: -20px; /* 👈 súbelo */
}

/* MENOS ESPACIO ENTRE LOGO E ICONOS */
.footer-logo img {
  margin-bottom: 1px !important;
}

.footer-social {
  margin-top: 0 !important;
}

  /* ===== ELIMINAR ESPACIO BLANCO ARRIBA ===== */

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HERO SIN ESPACIO */
.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* HEADER TRANSPARENTE EN MÓVIL */
@media (max-width: 768px) {

  .header {
    background: transparent !important;
    box-shadow: none !important;
  }

}
/* ===== ELIMINAR ESPACIOS LATERALES ===== */

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HERO FULL WIDTH */
.hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* SLIDER FULL */
.slider,
.slide {
  width: 100vw !important;
}

/* IMÁGENES FULL */
.slide {
  background-size: cover;
  background-position: center;
}

/* CONTENEDOR GENERAL */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* FIX GLOBAL (MUY IMPORTANTE) */
section {
  width: 100%;
}

/* ===== HAMBURGUESA PRO ===== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* ANIMACIÓN A X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ===== MENÚ MÓVIL PREMIUM ===== */

/* ===== MENÚ FULL SCREEN REAL ===== */

@media (max-width: 768px) {

  .nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(11, 15, 20, 0.98);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    /* 👇 CAMBIO CLAVE */
    transform: translateY(-100%);
    transition: 0.4s ease;

    z-index: 9999;
  }

  .nav.active {
    transform: translateY(0);
  }

}
  

  .nav a {
    font-size: 20px;
    letter-spacing: 2px;
  }




/* ===== FIX MENÚ FULL REAL ===== */

@media (max-width: 768px) {

  /* romper cualquier limitación */
  .nav {
    position: fixed !important;

    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;

    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;

    background: rgba(11, 15, 20, 0.98);

    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;

    transform: translateY(-100%);
    transition: 0.4s ease;

    z-index: 9999;
  }

  .nav.active {
    transform: translateY(0);
  }

  /* 🔥 ESTO ES LO MÁS IMPORTANTE */
  .nav * {
    max-width: none !important;
  }

}
/* ===== ELIMINAR CAJA OSCURA DEL MENÚ ===== */

@media (max-width: 768px) {

  .nav {
    width: 100vw !important;
    height: 100vh !important;

    background: rgba(11, 15, 20, 0.98) !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  /* 🔥 QUITAR FONDOS INTERNOS */
  .nav a {
    background: transparent !important;
    width: auto !important;
  }

  /* 🔥 SI HAY DIVS INTERNOS */
  .nav div {
    background: transparent !important;
  }

}
/* ===== FIX FINAL NAVBAR MOBILE (NUCLEAR) ===== */

@media (max-width: 768px) {

  /* RESET TOTAL DEL NAV */
  .nav {
    all: unset !important;

    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    background: rgba(11, 15, 20, 0.98) !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 30px !important;

    transform: translateY(-100%) !important;
    transition: transform 0.4s ease !important;

    z-index: 99999 !important;
  }

  /* CUANDO SE ABRE */
  .nav.active {
    transform: translateY(0) !important;
  }

  /* LINKS LIMPIOS */
  .nav a {
    all: unset !important;

    color: white !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
  }

  /* ELIMINA CUALQUIER CAJA INTERNA */
  .nav * {
    background: transparent !important;
    max-width: none !important;
    box-shadow: none !important;
  }

  /* HAMBURGUESA SIEMPRE ARRIBA */
  .hamburger {
    display: flex !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 100000 !important;
  }

}
@media (max-width: 768px) {

  .nav {
    background-color: rgba(11, 15, 20, 0.98) !important;

    /* LOGO COMO FONDO */
    background-image: url("dibujodelibocados.png") !important;
    background-repeat: no-repeat !important;
    background-position: center 60px !important;
    background-size: 200px auto !important;

    
  }

}
/* ===== EFECTO HOVER AMARILLO ===== */

@media (max-width: 768px) {

  .nav a {
    color: white !important;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;

    position: relative;
    cursor: pointer;
  }

  /* línea animada */
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: #f39c12;
    transition: 0.3s;
  }

  .nav a:hover {
    color: #f39c12 !important;
  }

  .nav a:hover::after {
    width: 100%;
  }

}
/* ===== QUITAR EFECTO BORROSO EN MÓVIL ===== */

@media (max-width: 768px) {

  .header,
  .nav,
  .overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* quitar transparencia si la tienes */
  .header {
    background: transparent !important;
  }

}
/* ===== OCULTAR LOGO Y CONTACTO EN MÓVIL ===== */

@media (max-width: 768px) {

  .logo {
    display: none !important;
  }

  .contact {
    display: none !important;
  }

}
/* ===== LOGO + TEL EN HERO (MOBILE) ===== */

.hero-top {
  display: none;
}

@media (max-width: 768px) {

  .hero-top {
    position: absolute;
    top: 60px; 
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    z-index: 10;
  }

  .hero-top img {
    width: 150px;
  }

  .hero-top span {
    color: #f39c12;
    font-size: 15px;
    font-weight: 600;
  }

}
.hero-top img {
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.6));
}

.hero-top span {
  text-shadow: 0 0 10px rgba(243,156,18,0.5);
}
@media (max-width: 768px) {

  footer * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}
/* ===== COPYRIGHT INTEGRADO ===== */

.footer-bottom {
  background: transparent !important; /* 👈 quita parche */
  text-align: center;
  padding: 15px 10px;

  border-top: 1px solid rgba(255,255,255,0.1); /* línea elegante */
}

.footer-bottom p {
  color: #ccc;
  font-size: 13px;
}/* ===== COPYRIGHT INTEGRADO ===== */

.footer-bottom {
  background: transparent !important; /* 👈 quita parche */
  text-align: center;
  padding: 15px 10px;

  border-top: 1px solid rgba(255,255,255,0.1); /* línea elegante */
}

.footer-bottom p {
  color: #ccc;
  font-size: 13px;
}
@media (max-width: 768px) {

  .hamburger {
    position: absolute;
    left: 20px;
    top: 25px;
  }

}
.nav-social a {
  border: 2px solid #f39c12;
  color: #f39c12;
}

/* WHATSAPP VERDE (PRO) */
.nav-social a:last-child {
  border: 2px solid #25D366;
  color: #25D366;
}

.nav-social a:last-child:hover {
  background: #25D366;
  color: black;
}
@media (max-width: 768px) {

  .nav {
    display: flex;
    flex-direction: column;

    justify-content: center !important;
    align-items: center;

    gap: 25px;

    /* 👇 ESTO ES LA CLAVE */
    padding-top: 50px !important;
  }

}
/* ===== OCULTAR REDES EN PC ===== */

@media (min-width: 769px) {

  .nav-bottom,
  .nav-social {
    display: none !important;
  }

}
html {
  scroll-behavior: smooth;
}
.menu-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===== PRODUCTO PRO ===== */

.product {
  background: #0b0f14;
  padding: 120px 10%;
  color: white;
}

/* CONTENEDOR */
.product-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGEN */
.product-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* INFO */
.product-info {
  max-width: 500px;
}

/* BADGE */
.product-badge {
  background: rgba(243,156,18,0.15);
  color: #f39c12;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

/* TITULO */
.product-info h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* SUBTEXTO */
.product-short {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* SECCIONES */
.product-info h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  color: #f39c12;
}

/* TEXTO */
.product-info p {
  color: #ccc;
  line-height: 1.7;
}

/* BOTÓN */
.btn {
  margin-top: 30px;
  display: inline-block;
  background: #c0392b;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}
.product {
  background: #0b0f14;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* CONTENEDOR CENTRADO */
.product-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* IMAGEN */
.product-left img {
  width: 500px;
  border-radius: 20px;
}

/* TEXTO */
.product-right {
  max-width: 500px;
}

/* BADGE */
.badge {
  background: rgba(243,156,18,0.1);
  color: #f39c12;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* TITULO */
.product-right h1 {
  font-size: 52px;
  margin: 15px 0;
}

/* SUBTEXTO */
.subtitle {
  color: #aaa;
  margin-bottom: 15px;
}

/* PRECIO */
.price {
  color: #f39c12;
  font-size: 28px;
  margin: 10px 0;
}

/* LINEA */
.line {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 25px 0;
}

/* BLOQUES */
.block {
  margin-bottom: 20px;
}

.block h4 {
  color: #f39c12;
  margin-bottom: 5px;
}

.block p {
  color: #ccc;
  line-height: 1.6;
}

/* BOTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #c0392b;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: #e74c3c;
}
body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
@media (max-width: 768px) {

  .menu-container {
    display: grid;
    grid-template-columns: 1fr; /* 🔥 una columna */
    justify-items: center;      /* 🔥 centra las cards */
    gap: 20px;
  }

  .menu-card {
    width: 90%;
    max-width: 350px;
  }

}
@media (max-width: 768px) {

  .product {
    padding: 40px 20px;
  }

  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .product-left,
  .product-right {
    width: 100%;
  }

  .product-left img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .product-right h1 {
    font-size: 32px;
  }

  .price {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

}
.back-arrow {
  position: fixed;
  top: 25px;
  left: 25px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);

  color: #f39c12;
  font-size: 22px;
  text-decoration: none;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);

  z-index: 9999;
  transition: 0.3s;
}

.back-arrow:hover {
  background: #f39c12;
  color: #000;
  transform: scale(1.1);
}
.legal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);

  text-align: center;
}

.legal h4 {
  color: #f39c12;
  margin-bottom: 10px;
  font-size: 16px;
}

.legal p {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 10px;
}

.legal ul {
  list-style: none;
  padding: 0;
}

.legal li {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}
/* ===== SECCIÓN EQUIPO ===== */

.team-section {
  background: #0b0f14;
  padding: 80px 10%;
  text-align: center;
  color: white;
}

/* TITULO */
.team-title {
  font-size: 40px;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
}

/* CONTENEDOR */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.team-card {
  max-width: 240px;
  transition: 0.3s;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-8px);
}

/* IMAGEN COMPLETA (NO CÍRCULO) */
.team-card img {
  width: 100%;
  max-width: 220px;
  height: 280px;

  object-fit: cover;

  border-radius: 15px;
  margin-bottom: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* NOMBRE */
.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* CARGO */
.team-card span {
  color: #f39c12;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

/* DESCRIPCIÓN */
.team-card p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    max-width: 300px;
  }

  .team-card img {
    max-width: 260px;
    height: 300px;
  }

}
.logo img {
  width: 200px;   /* 🔥 aumenta tamaño */
  height: auto;   /* mantiene proporción */

}
.footer-logo img {
  width: 200px;   /* 🔥 ajusta tamaño */
  height: auto;   /* mantiene proporción */
}
/* ===== CONTACTO PRO ===== */

.contact-pro {
  background: #0b0f14;
  color: white;
}

/* HERO */
.contact-hero {
  background: url('Imagen1.png') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.contact-hero h2,
.contact-hero p {
  position: relative;
  z-index: 2;
}

.contact-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
}

.contact-hero p {
  color: #ccc;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 60px;
  padding: 80px 10%;
  justify-content: center;
  flex-wrap: wrap;
}

/* IZQUIERDA */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1a1f25;
  color: white;
}

.contact-left textarea {
  height: 150px;
}

/* BOTÓN */
.contact-left button {
  width: 100%;
  padding: 14px;
  background: #c0392b;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

/* DERECHA */
.contact-right {
  flex: 1;
  min-width: 250px;
}

.contact-right h3 {
  margin-bottom: 20px;
}

.contact-right p {
  color: #bbb;
  margin-bottom: 15px;
}

/* REDES */
.contact-social .icons {
  display: flex;
  gap: 15px;
  margin: 10px 0 20px;
}

.contact-social i {
  background: #1a1f25;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* BOTÓN */
.contact-right .btn {
  display: inline-block;
  background: #f39c12;
  padding: 12px 20px;
  border-radius: 8px;
  color: black;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-hero h2 {
    font-size: 32px;
  }
}
.contact-wrapper {
  max-width: 1100px;
  margin: auto; /* 🔥 centra todo */
}
/* ===== CONTACTO MEJORADO ===== */

/* CENTRAR CONTENIDO */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* FORMULARIO */
.contact-left input,
.contact-left textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.03);
  color: white;

  transition: 0.3s;
}

/* EFECTO FOCUS */
.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #f39c12;
  outline: none;
  background: rgba(255,255,255,0.05);
}

/* BOTÓN FORMULARIO */
.contact-left button {
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg, #c0392b, #e74c3c);

  border: none;
  border-radius: 10px;

  color: white;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.contact-left button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192,57,43,0.4);
}

/* BOTÓN WHATSAPP */
.contact-right .btn {
  display: inline-block;

  background: linear-gradient(135deg, #f39c12, #f1c40f);

  padding: 12px 20px;
  border-radius: 10px;

  color: black;
  font-weight: bold;
  text-decoration: none;

  transition: 0.3s;
}

.contact-right .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243,156,18,0.4);
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-wrapper {
    padding: 0 20px;
  }

  .contact-left,
  .contact-right {
    text-align: center;
  }

}
/* ===== CONTACTO MÁS GRANDE Y PRO ===== */

/* CONTENEDOR MÁS ANCHO */
.contact-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding: 0 40px;
}

/* FORM MÁS GRANDE */
.contact-left {
  flex: 1.3;
}

/* INFO */
.contact-right {
  flex: 1;
}

/* INPUTS MÁS GRANDES */
.contact-left input,
.contact-left textarea {
  padding: 16px;
  font-size: 14px;
}

/* BOTÓN MÁS GRANDE */
.contact-left button {
  padding: 16px;
  font-size: 15px;
}

/* MOBILE (IMPORTANTE) */
@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

}
/* ===== FIX CONTACTO PRO ===== */

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  padding: 60px 20px;
  align-items: flex-start;
}

/* FORMULARIO */
.contact-left {
  flex: 1;
  max-width: 500px; /* 🔥 limita para que no se deforme */
}

/* INFO */
.contact-right {
  flex: 1;
  max-width: 400px;
}

/* INPUTS */
.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.03);
  color: white;
}

/* BOTÓN */
.contact-left button {
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border: none;
  border-radius: 10px;

  color: white;
  font-weight: 600;
}

/* HERO MÁS BAJO */
.contact-hero {
  padding: 80px 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }

}
.contact-hero h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  color: #f5d08a; /* dorado suave como tu marca */
}
/* ===== CONTACTO SIMPLE PRO ===== */

.contact-simple {
  background: #0b0f14;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

.contact-simple h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  color: #f5d08a;
  margin-bottom: 10px;
}

.contact-simple p {
  color: #ccc;
  margin-bottom: 30px;
}

/* BOTÓN */
.btn-whatsapp {
  display: inline-block;
  padding: 15px 30px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);

  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
/* ===== UBICACIÓN PRO ===== */

.location {
  background: #0b0f14;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.location h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  color: #f5d08a;
}

.location p {
  margin-bottom: 30px;
  color: #ccc;
}

/* MAPA */
.map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* BOTONES */
.location-actions {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;

  background: #c0392b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e74c3c;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f39c12;
  color: #f39c12;
}

.btn.secondary:hover {
  background: #f39c12;
  color: black;
}
/* ===== UBICACIÓN CON FONDO ===== */

.location {
  position: relative;

  background: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1974&auto=format&fit=crop") center/cover no-repeat;

  padding: 100px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* OSCURECER FONDO */
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

/* CONTENIDO ENCIMA */
.location * {
  position: relative;
  z-index: 2;
}
.location h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 70px;
  color: #f5d08a;

  text-shadow: 
    0 2px 5px rgba(0,0,0,0.5),
    0 0 15px rgba(245,208,138,0.2);
}
/* CONTENEDOR DEL TÍTULO */
.title-ubicacion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* IMAGEN (GALLETICA CON PALITO) */
.title-ubicacion img {
  width: 150px; /* ajusta tamaño */
  height: auto;
}

/* TEXTO */
.title-ubicacion h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 65px;
  color: #f5d08a;
  margin: 0;
}
/* ===== GRID UBICACIÓN ===== */

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* INFO DERECHA */
.info-empresa {
  color: white;
  text-align: left;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 15px;
}

/* LOGO */
.logo-empresa {
  width: 320px;
  margin-bottom: 15px;
}

/* TITULOS */
.info-empresa h3 {
  color: #f5d08a;
}

.info-empresa h4 {
  margin-top: 20px;
  color: #f39c12;
}

/* LISTA */
.info-empresa ul {
  padding-left: 20px;
}

.info-empresa li {
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ubicacion-grid {
    grid-template-columns: 1fr;
  }

  .info-empresa {
    text-align: center;
  }
}
/* ===== MOBILE FIX UBICACIÓN ===== */
@media (max-width: 768px) {

  /* GRID → UNA COLUMNA */
  .ubicacion-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* MAPA CENTRADO */
  .map-container {
    width: 100%;
    margin: auto;
  }

  .map-container iframe {
    width: 100%;
    height: 300px; /* más cómodo en celular */
  }

  /* INFO CENTRADA */
  .info-empresa {
    text-align: center;
    margin-top: 20px;
  }

  /* LOGO CENTRADO */
  .logo-empresa {
    display: block;
    margin: 0 auto 15px auto;
  }

  /* TITULO CENTRADO */
  .title-ubicacion {
    justify-content: center;
    text-align: center;
  }

  /* TEXTO MÁS LEGIBLE */
  .info-empresa p,
  .info-empresa li {
    font-size: 14px;
  }

}
/* ===== FIX REAL MOBILE UBICACIÓN ===== */
@media (max-width: 768px) {

  .ubicacion-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* MAPA CONTROLADO */
  .map-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
  }

  .map-container iframe {
    width: 100%;
    height: 250px; /* 🔥 clave */
    display: block;
  }

  /* ESPACIO ENTRE MAPA Y TEXTO */
  .info-empresa {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  /* LOGO */
  .logo-empresa {
    margin: 0 auto 15px auto;
    display: block;
    width: 140px;
  }

  /* TITULO */
  .title-ubicacion {
    flex-direction: column;
    gap: 5px;
  }

}
/* ===== LOGO MÁS GRANDE EN MÓVIL ===== */
@media (max-width: 768px) {

  .hero-top img {
    width: 300px !important;
  }

}
/* ===== FIX TOTAL LOGO ===== */

.logo img {
  width: 250px !important;
  height: auto !important;
  max-height: none !important;
}
/* ===== TITULO MENU ===== */
.menu-title {
  font-family: 'Great Vibes', cursive !important;
  font-size: 65px;
  color: #f5d08a;
  text-align: center;

  text-shadow: 
    0 2px 5px rgba(0,0,0,0.5),
    0 0 15px rgba(245,208,138,0.2);
}
/* ===== TITULOS FEATURED ===== */
.featured-card h3 {
  color: #f5d08a; /* dorado del branding */
}
/* ===== SUBTITULO PRODUCTOS ===== */

.menu-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  opacity: 0.8;
}