* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}







body {
  font-family: 'Outfit', sans-serif;
  background-color: #fff; /* blanco o un color neutro */
   background-image: url("img/fondo.webp");
  background-size: cover; /* hace que la imagen cubra todo */
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh; /* ocupa toda la altura visible */
  margin: 0;
  padding: 0;


}





html, body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}






/* NAVBAR */
nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  z-index: 1000;
  flex-wrap: wrap;
}








.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6); /* sombra para legibilidad */
  transition: color 0.3s ease;
}



.navbar li a:hover {
  color: #2e7d32;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-logo {
    position: static;
    transform: none;
    margin: 1rem 0;
  }
}

/* CARRUSEL */
.carrusel {
  height: 100vh;
  background-color: #000; /* fondo de seguridad */
  overflow: hidden;
}



.swiper {
  width: 100%;
  height: 100%;
  background-color: #000; /* fondo oscuro mientras carga */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d0f0c0;
  height: 100%;

}

.swiper-slide img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}


.swiper-wrapper {
  height: 100%;
}

/* Centrar el contenido dentro de cada slide */
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;      /* centra horizontalmente */
  justify-content: center;  /* centra verticalmente */
  height: 100%;             /* ocupa toda la altura del slide */
  position: relative;
}



.slide-content img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ajustar la caja de texto */
.texto-slide {
  text-align: center;
  margin-top: 80px; /* empuja hacia abajo */
}

.texto-slide h2 {
  font-family: 'Chewy', cursive; /* cambia solo las frases */
  font-size: 3rem;                  /* ajusta tamaño */
  color: #fff;                      /* podés jugar con el color */
  text-shadow: 0 0 5px #e64b9b,   /* rosa pastel */
    0 0 10px #e64b9b,
    0 0 15px #e64b9b;

 /* resplandor oscuro */

}

/* Responsive: centrar texto y hacerlo más legible */
@media (max-width: 768px) {
  .texto-slide {
    position: absolute;
    top: auto;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    font-size: 1.2rem;
   text-shadow: 0 0 5px rgba(0, 0, 0, 0.6); /* mantiene sombra en móvil */


  }
}



@keyframes zoomInText {
  from {
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

.texto-slide {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  max-width: 40%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  animation: zoomInText 1s ease-out;
}




nav {
  background: transparent !important;
  position: absolute;
  width: 100%;
}

nav .navbar-nav a {
  font-size: 16px;
  text-transform: uppercase;
  color: #f7f2f2 !important;
  transition: all 0.3s;
}

nav .navbar-nav a:hover {
  color: #ff69b4 !important; /* Rosa pastel como acento */
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1); /* Icono visible sobre fondo claro */
}


.navbar-brand img {
  margin-right: -70px; /* mueve el logo 20px hacia la derecha */
}







.sabor-card img {
  width: 85%;
  height: auto;
  max-height: 300px; /* Ajustá según lo que se vea mejor */
  object-fit: cover;
  border-radius: 12px; /* Opcional: da un toque más suave */
}




.nosotros-section img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* sombra suave y difusa */
  border-radius: 12px; /* opcional: bordes redondeados */
  transition: transform 0.3s ease;
  width: 85%;
  height: auto;
  object-fit: cover;
}

.nosotros-section img:hover {
  transform: scale(1.02); /* efecto sutil al pasar el mouse */
}
















.sabores-section {
  background: #fffaf7; /* tono suave pastel */
  padding: 60px 0;
  text-align: center;
}

.titulo-seccion {
  font-family: 'Chewy', cursive;
  font-weight: 400; /* Chewy ya es gruesa */
  font-size: 3rem;  /* ajustá según tu diseño */
  color: #ff69b4;
}



section#ubicacion .titulo-seccion {
  font-family: 'Chewy', cursive;
  font-weight: 400;
  font-size: 3rem;  /* ajustá según tu diseño */
  color: #ff69b4;
}



.separador {
  border: 2px solid #ff69b4;
  width: 80px;
  margin: 20px auto;
}

.sabor-card {
  margin-bottom: 30px;
}





.sabor-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #333;
}

body {
  font-family: 'Montserrat', sans-serif;
}

h2, h3 {
  font-family: 'Chewy', cursive;
}


.sabor-card p {
  font-family: 'Outfit', sans-serif ,'Chewy', cursive;
  color: #666;
}

.lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 400; /* o 500 si querés más presencia */
  font-size: 1.2rem; /* ajustá según tu diseño */
  line-height: 1.6;
  color: #333;
}












.btn-pedidos {
  background: #ff69b4; /* rosa pastel */
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* espacio entre ícono y texto */
}

.btn-pedidos-animado {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { background-color: #25D366; box-shadow: 0 0 5px #25D366; }
  50%  { background-color: #1ebe5d; box-shadow: 0 0 20px #25D366; }
  100% { background-color: #25D366; box-shadow: 0 0 5px #25D366; }
}

.btn-pedidos:hover {
  background: #ff4081; /* rosa más intenso */
  text-decoration: none;
  color: #fff;
}









.pedidos-section {
  background: #fffaf7;
  padding: 60px 0;
}

.pedido-info {
  margin-bottom: 30px;
}

.pedido-info i {
  font-size: 2rem;
  color: #ff69b4;
  margin-bottom: 10px;
}

.pedido-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #333;
}

.pedido-info p {
  color: #666;
  font-family: 'Outfit', sans-serif;
}






.map-section .map-container iframe {
  width: 100vw;       /* ocupa todo el ancho de la ventana */
  max-width: 100%;    /* evita desbordes */
  margin: 0;          /* elimina márgenes laterales */
  display: block;     /* asegura que se comporte como bloque */
}



/* Asegurate de que este CSS cargue después del CSS de Bootstrap */
.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 1s ease-in-out, opacity 1s ease; /* más lento y con opacidad */
  z-index: 999;
  
}

/* Clase que oculta el navbar desplazándolo hacia arriba */
.navbar.fixed-top.navbar--hidden {
  transform: translateY(-100%);
  opacity: 0; /* se desvanece */
}










.map-section {
  background: #fffaf7;
  padding: 60px 0;
  text-align: center;
}

.map-section .titulo-seccion {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #ff69b4;
}

.map-section .separador {
  border: 2px solid #ff69b4;
  width: 80px;
  margin: 20px auto;
}

.map-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Footer */
.footer-section {
  background: #ff69b4; /* Rosa pastel */
  color: #fff;
  padding: 30px 0;
}

.footer-section p {
  margin: 5px 0;
  font-family: 'Outfit', sans-serif;
}

.footer-section .social-links a {
  border-radius: 20px;
  font-size: 0.9rem;
}



