* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #ffd8e4;
  color: #4c1a30;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mensaje {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.boton {
  padding: 15px 30px;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.boton:hover {
  background-color: #e2579a;
  transform: scale(1.05);
}

.seccion-amor {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.seccion-amor h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}



.galeria {
  margin-top: 40px;
}

.galeria h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #4c1a30;
}

.fotos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.fotos img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.fotos img:hover {
  transform: scale(1.05);
}

.galeria {
  background: rgba(255,216,228,0.8); /* rosadito translúcido */
  backdrop-filter: blur(6px);        /* efecto vidrio borroso */
  padding: 25px;
  border-radius: 20px;
  max-width: 90%;
  margin: 30px auto;
}

#teamo {
  background: transparent !important;
}


.inicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('IMAGENES/aaaa.png'); /* tu imagen */
  background-size: cover;            /* se ajusta sin deformarse */
  background-position: center 90%;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: blur(2px);
  z-index: -1;
}

@media screen and (max-width: 900px) {
  .inicio::before {
    background-position: center;
    background-size: cover;
    filter: blur(0px);
  }

  .container h1 {
    font-size: 2rem;
  }

  .boton {
    font-size: 1rem;
    padding: 12px 25px;
  }
}


.contador {
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff4081;
  text-align: center;
}

.visor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;  /* arriba de todo */
}

.img-grande {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}




.corazon-boton {
  text-align: center;
  font-size: 3rem;
  cursor: pointer;
  animation: latir 1.2s infinite;
  margin-top: 50px;
}

@keyframes latir {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}











/* CARTA */

.carta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.contenido-carta {
  background: #fff;
  padding: 30px;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  transform: scale(0);
  transition: transform 0.4s;
}

.carta.abierta .contenido-carta {
  transform: scale(1);
}

.contenido-carta button {
  margin-top: 20px;
  padding: 8px 20px;
  background: #ff6c9f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

