:root {
  --rosa: #FFCCD3;
  --amarillo: #FFF085;
  --celeste: #A2F4FD;
  --gris: #333;
  --blanco: #F8FAFC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--gris);
  background-color: var(--rosa);
}

header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom, var(--rosa), var(--amarillo));
}

header h1 {
  font-family: "Playwrite DE SAS", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--gris);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2.5rem;
  }

  .slider-container {
    height: 300px;
  }
}

header h1:hover {
  transform: scale(1.03);
}

.presentacion {
  text-align: center;
  padding: 2.5rem 1rem;
  background: linear-gradient(to bottom, var(--amarillo), var(--celeste));
}

.presentacion h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Playwrite US Modern", cursive;
  font-optical-sizing: auto;
}

.presentacion p {
  font-family: "Pacifico", cursive;

  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.boton {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 1.8rem;
  background-color: var(--rosa);
  color: var(--gris);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: var(--amarillo);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slider {
  animation: fadeIn 1s ease-in;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, var(--celeste), var(--rosa));
  display: flex;
  justify-content: center;
}

.slider-container {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #FFCCD3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .slider-container {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .slider-container {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    width: 100%;
    height: 450px;
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.slide.active {
  opacity: 1;
}

footer {
  background: linear-gradient(to bottom, var(--rosa), var(--celeste));
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--gris);
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
  animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

.button-icon {
  animation: pulsate-fwd 1s infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px #fff solid;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  margin: 2rem auto;
}

.icon {
  background-color: #fff;
  padding: 10px 10px 5px 10px;
}

.icon svg {
  width: 25px;
  height: 25px;
}

.cube {
  transition: all 0.4s;
  transform-style: preserve-3d;
  width: 200px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.button-icon:hover {
  border-color: #ff98a2;
}

.button-icon:hover .cube {
  transform: rotateX(90deg);
}

.side {
  position: absolute;
  height: 47px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.top {
  background: #ff98a2;
  color: #fff;
  transform: rotateX(-90deg) translateZ(1em);
}

.front {
  background: #222229;
  color: #fff;
  transform: translate3d(0, 0, 1em);
}

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  background: linear-gradient(to bottom, var(--celeste), var(--rosa));
}


.loader {
  --loader-size: 30vmin;
  --loader-size-half: calc(var(--loader-size) / 2);
  --loader-size-half-neg: calc(var(--loader-size-half) * -1);
  --light-color: rgba(255, 255, 255, 0.3);
  --dot-size: 25px;
  --dot-size-half: calc(var(--dot-size) / 2);
  --dot-size-half-neg: calc(var(--dot-size-half) * -1);

  display: grid;
  place-items: center;
  color: white;
  position: relative;
  width: var(--loader-size);
}

.loader::before,
.loader::after {
  content: '';
  position: absolute;
}


.loader--8 {
  --anim-duration: 0.8s;
  aspect-ratio: 1 / 1;
  border: 1px dashed var(--light-color);
  border-radius: 50%;
  perspective: 50vmin;
  transform-style: preserve-3d;
  transform: rotateX(45deg) rotateY(15deg);
}

.loader--8::before,
.loader--8::after {
  animation: loader-8 var(--anim-duration) cubic-bezier(0.39, 0.24, 0, 0.99) infinite;
}

.loader--8::before {
  --z-dist: 8vmin;
  width: var(--dot-size);
  aspect-ratio: 1 / 1;
  background: currentColor;
  border-radius: 50%;
  top: calc(50% - var(--dot-size-half));
  left: calc(50% - var(--dot-size-half));
  animation-delay: calc(var(--anim-duration) / 4 * -1);
}

.loader--8::after {
  --z-dist: 4vmin;
  width: 65%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid currentColor;
}

@keyframes loader-8 {

  0%,
  100% {
    transform: translateZ(calc(var(--z-dist) * -1)) scale(0.6);
  }

  55% {
    transform: translateZ(var(--z-dist));
  }
}

.logo-crepamania {
  display: block;
  margin: 1rem auto 0 auto;
  width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-crepamania:hover {
  transform: scale(1.05);
}

.menu-flotante {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

.boton-toggle {
  background-color: var(--gris);
  color: var(--blanco);
  font-weight: bold;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6em;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.boton-toggle:hover {
  transform: scale(1.05);
}

.botones-ocultos {
  position: absolute;
  bottom: 120%;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.scale-in-br {
  animation: scale-in-br 0.55s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  opacity: 1;
  visibility: visible;
}

@keyframes scale-in-br {
  0% {
    transform: scale(0);
    transform-origin: 100% 100%;
  }
  100% {
    transform: scale(1);
    transform-origin: 100% 100%;
  }
}

.scale-out-br {
  animation: scale-out-br 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes scale-out-br {
  0% {
    transform: scale(1);
    transform-origin: 100% 100%;
  }
  100% {
    transform: scale(0);
    transform-origin: 100% 100%;
  }
}
.boton-flotante-wrapper {
  opacity: 0;
  visibility: hidden;
}

.boton-flotante-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -1;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.boton-flotante-wrapper:hover::before {
  background: linear-gradient(90deg, var(--amarillo), var(--rosa), var(--celeste));
  filter: blur(0.5em);
}

.boton-flotante-wrapper:active::before {
  filter: blur(0.2em);
}

.boton-flotante {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6em;
  background-color: var(--gris);
  color: var(--blanco);
  text-decoration: none;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boton-flotante:hover {
  transform: scale(1.05);
  box-shadow: 3px 3px 6px rgba(0,0,0,0.25);
}
.mision-body {
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--amarillo), var(--rosa), var(--celeste));
  font-family: 'Segoe UI', sans-serif;
  color: var(--gris);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mision-header {
  text-align: center;
  padding: 2rem;
  background: transparent;
}

.titulo-mision {
  font-family: "Playwrite DE SAS", cursive;
  font-size: 3.5rem;
  color: var(--gris);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  animation: fadeSlide 1s ease-out forwards;
}

.contenido-mision {
  text-align: center;
  padding: 2rem 1rem;
  font-family: "Playwrite US Modern", cursive;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
  .contenido-mision {
    max-width: 90%;
    font-size: 1rem;
    border-radius: 18px;
  }
}

.galeria {
  padding: 3rem 1rem;
  width: 100%;
  max-width: 1200px;
}

.fila {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.foto {
  width: 300px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.foto:hover {
  transform: scale(1.03);
}

.galeria-crepas {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.crepa-item {
  position: relative;
  width: 95%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 35px;
  border: 4px solid var(--rosa);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: var(--blanco);
}

.crepa-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 35px;
  transition: transform 0.3s ease;
}

.crepa-img:hover {
  transform: scale(1.02);
}

@media (max-width: 480px) {
  .crepa-item {
    max-width: 90%;
    border-radius: 16px;
  }

  .crepa-img {
    border-radius: 12px;
  }
}

.receta-crepas {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: "Playwrite US Modern", cursive;
}

.receta-crepas h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gris);
}

.receta-crepas ul,
.receta-crepas ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--gris);
}

.foto-receta {
  margin: 2rem auto;
  text-align: center;
}

.receta-img {
  width: 90%;
  max-width: 600px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
  .receta-crepas {
    max-width: 90%;
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .receta-crepas h2 {
    font-size: 1.5rem;
  }

  .receta-crepas ul,
  .receta-crepas ol {
    font-size: 1rem;
    margin-left: 1rem;
  }

  .receta-img {
    max-width: 90%;
    border-radius: 20px;
  }
}

.equipo-crepamania {
  padding: 2rem 1rem;
  text-align: center;
}

.grid-equipo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-equipo {
  background: linear-gradient(to bottom right, #fff8e1, #ffe0f0);
  border: 2px solid #ffc1e3;
  border-radius: 12px;
  padding: 1rem;
  width: calc(25% - 20px);
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card-equipo:hover {
  transform: scale(1.03);
}

.card-equipo h3 {
  margin-top: 0;
  font-family: 'Pacifico', cursive;
  color: #d94f8a;
  font-size: 1.5rem;
}

.card-equipo p {
  font-family: 'Playwrite US Modern', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .card-equipo {
    width: 90%;
    padding: 0.8rem;
  }

  .card-equipo h3 {
    font-size: 1.2rem;
  }

  .card-equipo p {
    font-size: 0.85rem;
  }
}

.foto-grupal-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.foto-grupal {
  max-width: 100%;
  width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .foto-grupal {
    width: 90%;
  }
}