
  body {
    margin: 0;
    font-family: sans-serif;
    /* background-color: #ddf3ec; */
    background-color: #d0f4f1;
  }
  
  @font-face {
    font-family: 'Bergstena';
    src: url('../fuentes/BergstenaDecorated.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Baby';
    src: url('../fuentes/BabyGentha.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Baars';
    src: url('../fuentes/Baars.TTF') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Fortalesia';
    src: url('../fuentes/Fortalesia.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

   @font-face {
    font-family: 'Mono';
    src: url('../fuentes/ConsolaMono.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
    @font-face {
    font-family: 'Babel';
    src: url('../fuentes/BabelSans-Bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @keyframes bite {
    0% { height: 50%; }
    50% { height: 30%; }
    100% { height: 50%; }
  }
  @keyframes flanBite {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
  }
  /* Contenido de la página oculto mientras carga */
  #content {
    display: none;
  }
  .contain-1 {
    height: 1500px;
    width: 100%;
  }
  h1, h2, h3 {
    font-family: 'Fortalesia', sans-serif;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  }

  /* 
  p {
    font-family: 'Mono', serif;
    font-size: 17px;
  }
  /* LOADING */
  #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .flan {
    width: 500px;          
    height: 500px;        
    background: url('../img/logo-nuevo.webp') no-repeat center/contain;
    position: relative;
    overflow: hidden;
    animation: flanBite 1s infinite alternate;
  }

/* ===== SLIDER SWEETIE BITES ===== */
  .swiper {
      width: 100%;
      height: 600px;
      margin-top: 0;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 2s ease;
    }

    /* Efecto de zoom suave */
    .swiper-slide-active img {
      transform: scale(1.05);
    }

.swiper-slide { 
  position: relative; 
}
.slide-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #fff; /* cursor */
  width: 0ch; /* ancho en caracteres */
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c8e6c9;
  text-shadow: 0 5px 10px rgba(0,0,0,0.8);
  font-family: "Amatic SC", sans-serif;
}

.swiper-slide-active .slide-text {
  animation: typing 2s steps(20) forwards, blink 0.7s step-end 6; 
  /* blink: solo 6 veces, para que pare al terminar */
}

@keyframes typing {
  from { width: 0ch; }
  to { width: 29ch; } /* igual al número de caracteres de tu frase */
}

@keyframes blink {
  50% { border-color: transparent; }
}


    /* Paginación */
    .swiper-pagination-bullet {
      background: #f7a9a8 !important;
      opacity: 0.7;
    }

    .swiper-pagination-bullet-active {
      background: #fcc8ff !important;
      opacity: 1;
    }

    /* Botones de navegación */
    .swiper-button-next,
    .swiper-button-prev {
      color: #edacee !important;
      transition: all 0.3s ease;
    }
    

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      color: #e289e4 !important
    }

/* Circulito que seguirá al puntero */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;       /* tamaño del flanito */
  height: 50px;      /* tamaño del flanito */
  background: url('../img/FLANITO.png') no-repeat center/contain; /* tu imagen */
  border-radius: 50%; /* opcional, si quieres esquinas redondas */
  pointer-events: none; /* que no bloquee clicks */
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease-out; /* movimiento suave */
}
section.features {
    width: 80%;
    margin: 0 auto;
    margin-top: 70px;
    border-radius: 5px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.feature {
  max-width: 250px;
  transition: transform 0.3s ease;
}

.icon-container.ingredientes {
    background-image: url(../img/ingredientes1.png);
}
.icon-container.envio {
  background-image: url(../img/envio1.png);
}
.icon-container.pagos {
  background-image: url(../img/pagos1.png); 
}
.icon-container.endulza { 
  background-image: url(../img/endulza1.png);
}
.icon-container.ingredientes:hover {
    background-image: url(../img/ingrediente2.png);
}
.icon-container.envio:hover {
  background-image: url(../img/envio2.png);
}
.icon-container.pagos:hover {
  background-image: url(../img/pago2.png); 
}
.icon-container.endulza:hover { 
  background-image: url(../img/endulza2.png);
}
.icon-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.icon-container img {
  width: 45px;
  height: 45px;
}

.feature h3 {
  font-family: 'Baby';
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
  color: #8d03af;
  line-height: 1.2;
  height: 70px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature p {
  font-size: 15px;
  color: #666;
  line-height: 1.2;
  font-family: 'Baars';
  font-weight: 600;
}

/****************MENU********************/
.menu-section {
    background-color: #f7ecee;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 80px;
    border-radius: 5px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
h3.text-menu {
  text-align: center;
  margin: 10px 0 70px;
  font-size: 72px;
  color: #81121f;
  text-shadow: 2px 2px 4px rgb(95 3 3 / 37%);
}
.menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  position: relative;
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: repeating-linear-gradient(
    to right,
    #ff99b3 0 10px,
    transparent 10px 20px
  );
  animation: borderWalk 1s linear infinite;
}
/* efecto de movimiento */
@keyframes borderWalk {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 20px 0;
  }
}
.menu-item img {
  width: 90px;
}
.menu-info h3 {
  font-size: 25px;
  color: #e84c5c;
  margin: 0;
  font-family: 'baby';
  margin-left: 15px;
}
.menu-info p {
  font-family: 'Baars';
  margin: 3px 0 0 0;
  font-size: 1rem;
  color: #7f7f7f;
  margin-left: 30px;
  font-weight: 600;
}
.menu-image {
  position: relative;
  border-radius: 15px;
  padding: 20px;
  z-index: 1;
}
.menu-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.btn-canasta {
  background: linear-gradient(135deg, #ff99b3, #e84c5c);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 6px 20px;
    font-family: 'Mono';
    font-size: 16px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(232, 76, 92, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-canasta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transition: all 0.5s ease;
}
.btn-canasta:hover::before {
  left: 100%;
}
.btn-canasta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(232, 76, 92, 0.4);
}
.btn-canasta:active {
  transform: scale(0.97);
}

.ubicacion-section {
  width: 80%;
  margin: 100px auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 60px 20px;
  font-family: 'Baars';
}

.text-mapa {
  font-family: 'Fortalesia';
  font-size: 68px;
  color: #81121f;
  margin-bottom: 10px;
}

.mapa-descripcion {
  color: #666;
  font-size: 17px;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.5;
}
.mapa-contenedor {
  border-radius: 15px;
}
