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

      html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background: linear-gradient(to top, #E8E8E8, #87cefa);
        position: relative;
        z-index: -1;
      }
      
      /* Contenedor que bloquea el desborde horizontal */
      .cloud-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 0; /* detrás del contenido principal */
      }
      
      /* Nubes */
      .cloud {
        width: 350px;
        height: 120px;
        background: linear-gradient(to top, #BFF 5%, #DFF 100%);
        background: -webkit-linear-gradient(top, #FFF 1%, #BFF 100%);
        background: -moz-linear-gradient(top, #BFF 5%, #DFF 100%);
        background: -ms-linear-gradient(top, #BFF 5%, #DFF 100%);
        background: -o-linear-gradient(top, #BFF 5%, #DFF 100%);
        position: absolute;
        border-radius: 100px;
        animation: float 18s ease-in-out infinite;
        z-index: -1;
      }
      
      /* Sombras */
      .cloud::before,
      .cloud::after {
        content: '';
        position: absolute;
        background: #fff;
        z-index: -1;
      }
      
      .cloud::after {
        width: 100px;
        height: 100px;
        top: -50px;
        left: 50px;
        border-radius: 100px;
      }
      
      .cloud::before {
        width: 200px;
        height: 200px;
        top: -90px;
        right: 50px;
        border-radius: 200px;
      }
      
      /* Animación original */

      @keyframes float {
        0% {
          transform: translateX(-150vw);
        }
        50% {
          transform: translateX(0vw) translateY(-1vh);
        }
        100% {
          transform: translateX(150vw);
        }
      }
      
      
      

      
    /* Google Fonts */

    .great-vibes-regular {
        font-family: "Great Vibes", cursive;
        font-weight: 600;
        font-size: clamp(6rem, 8vw, 6rem);
        font-style: normal;
        color: #7B322E;
      }
      
      .great-vibes-regular1 {
        font-family: "Great Vibes", cursive;
        font-weight: 500;
        font-size: clamp(2rem, 6vw, 4rem);
        font-style: normal;
      }
      

    .parisienne-regular {
        font-family: "Parisienne", cursive;
        font-weight: 600;
        font-style: clamp(2rem, 6vw, 4rem);
        font-size: 2rem;
    }

    .parisienne-regular1 {
      font-family: "Parisienne", cursive;
      font-weight: 600;
      font-style: clamp(2rem, 6vw, 4rem);
      font-size: 3rem;
  }


      
    
    .card1 {
        background-color: #ffffff;
        width: 100%;
        max-width: 190px;
        height: auto;
        padding: 15px;
        border-radius: 30px;
        box-shadow: inset 4px 4px 12px #c5c5c5,
        inset -4px -4px 12px #ffffff;
      }
      
   .card-img {
    border-radius: .5rem;
    transition: .3s ease;
   }
   
   .card-info {
    padding-top: 10%;
   }
   
   svg {
    width: 30px;
    height: 30px;
   }
   
   .card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
   }
   
   /*Text*/
   .text-title {
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1.5;
   }
   
   .text-body {
    font-size: .9em;
    padding-bottom: 10px;
   }
   
   /*Button*/
   .card-button {
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2em;
    cursor: pointer;
    border-radius: 50px;
    transition: .3s ease-in-out;
   }
   
   /*Hover*/
   .card-img:hover {
    transform: translateY(-5%);
    box-shadow: #a6c2ff 0px 13px 47px -5px, #a6c2ff 0px 8px 16px -8px;
   }
   
   .card-button:hover {
    background-color: #a6c2ff;
   }
   

   .gif-bebe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw; /* Ajusta el tamaño para que sea responsive */
    height: 80vw; /* Asegúrate de que sea igual al ancho para un círculo perfecto */
    max-width: 220px; /* Tamaño máximo para pantallas grandes */
    max-height: 220px; /* Tamaño máximo para pantallas grandes */
    background-color: #ffffff; /* Color de fondo del círculo */
    border-radius: 50%; /* Convierte el cuadrado en un círculo */
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }

  .img-bebe {
    width: 200px;
    height: 200px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-content: center;
    gap: 1.5rem;
  }
  
  @media (max-width: 575px) {
    .card-grid {
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
    }
  }
  

  /* FOOTER */

  /* From Uiverse.io by NelsonDJCR */ 
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.7em 3.3em 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    box-shadow: 6px 6px 12px #c5c5c5,
               -6px -6px 12px #ffffff;
  }
  
  .button2 > svg {
    height: 30px;
    position: absolute;
    padding: 0px 5px;
    margin-top: -4px;
  }
  
  .button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }
  
  .button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #009087;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:hover {
    color: #ffffff;
    border: 1px solid #009087;
  }
  
  .button2:hover:before {
    top: -35%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button2:hover:after {
    top: -45%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
/* 1. Centramos las polaroids */

.centrado-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem;
    flex-wrap: wrap;  /* Agregado para permitir el ajuste de las imágenes */
}
  
  /* 2. Estilo de foto tipo polaroid */
  .polaroid {
    margin: 1rem;
    width: 220px;
    padding: 10px 10px 20px 10px;
    background: #fff;
    box-shadow:
      0 1px 1px rgba(0, 0, 0, 0.12),
      0 2px 2px rgba(0, 0, 0, 0.12),
      0 4px 4px rgba(0, 0, 0, 0.12),
      0 8px 8px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
  }
  
  .polaroid:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
      0 2px 2px rgba(0, 0, 0, 0.15),
      0 4px 4px rgba(0, 0, 0, 0.15),
      0 8px 8px rgba(0, 0, 0, 0.15),
      0 16px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* 3. Contenedor de imagen */
  .photo {
    width: 100%;
    background-color: #87ceeb;
    overflow: hidden;
    position: relative;
  }
  
  .photo img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer; /* Cambiar el cursor al pasar sobre la imagen */
  }
  
/* 4. Brillo animado sobre la imagen */
.photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 32%,
    rgba(255, 255, 255, 0) 35%
  );
  animation: shine 2s infinite linear;
  z-index: 2;
}

  
  /* 5. Arañazos superpuestos */
  .scratches {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(
          45deg,
          transparent 45%,
          rgba(0, 0, 0, 0.05) 46%,
          transparent 47%
        )
        0 0,
      linear-gradient(
          -45deg,
          transparent 45%,
          rgba(0, 0, 0, 0.05) 46%,
          transparent 47%
        )
        0 0;
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 3;
  }
  
  /* 6. Leyenda o pie de foto */
  .caption {
    font-family: "Courier New", monospace;
    text-align: center;
    margin-top: 12px;
    color: #333;
    font-size: 14px;
    opacity: 0.8;
  }
  
/* Animación del brillo */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(120deg); /* Empieza fuera de la pantalla */
  }
  50% {
    transform: translateX(100%) rotate(120deg); /* Llega al otro extremo */
  }
  100% {
    transform: translateX(200%) rotate(120deg); /* Vuelve a salir de la pantalla */
  }
}
  
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 300px;
  padding: 10px 10px 20px 10px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.modal-content .photo {
  background-color: #87ceeb;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-content .caption {
  font-family: "Courier New", monospace;
  text-align: center;
  margin-top: 12px;
  color: #333;
  font-size: 14px;
  opacity: 0.8;
}

.close-btn {
  display: none;
}

/* Responsive */
@media (min-width: 768px) {
  .modal-content {
    max-width: 320px;
  }
}

/* Ajustes para el modal: sin rotación ni brillo */
.modal-content {
  transform: none !important;
  transition: none !important;
}

.modal-content .photo::before {
  display: none !important;
}


/* SEÑOR FOOTER*/

.btn-shine {
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-position: 0;
    background-clip: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
  }
  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 150px;
    }
    100% {
      background-position: 300px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 150px;
    }
    100% {
      background-position: 300px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 150px;
    }
    100% {
      background-position: 300px;
    }
  }
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 150px;
    }
    100% {
      background-position: 300px;
    }
  }
  


  /* AUDIO */

  audio {
    display: none;
  }
  
  #toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    background-color: #ffffff00;
    border: none;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease;
  }
  
  #toggle-btn:hover {
    background-color: #ffffff;
  }
  