* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: montserrat;
}
.custom-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen de fondo desenfocada y oscurecida */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./images/jeremy1.jpg"); /* Cambiar por tu imagen */
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(50%);
}

/* Contenido por encima */
.content-principal {
  height: fit-content;
  padding-top: 80px;
  position: relative;
  display: flex;
  max-width: 1200px;
  width: 70%;
  gap: 40px;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Imagen de un lado */
.image-container img {
  max-width: 350px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Div editable */
.glass-box {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  min-width: 50%;
  max-width: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  width: 100%;
}

.link {
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
}

.link img {
  width: 25%;
  margin-right: 10px;
  object-fit: contain;
}

.link-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.link:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}

.profile-info {
  margin-top: 15px;
  text-align: center;
  color: #fff;
}

.profile-info h2 {
  margin: 5px 0;
  font-size: 22px;
  font-weight: 600;
}

.profile-info p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}

/* Estado "activo ahora" */
.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #8fffa1;
  font-weight: 500;
}

.status .dot {
  width: 10px;
  height: 10px;
  background-color: #5eff7b;
  border-radius: 50%;
  box-shadow: 0 0 5px #5eff7b;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Animación pulso */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.header {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #0f0f0f;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

@media (max-width: 768px) {
  .content-principal {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container img {
    max-width: 200px;
  }

  .glass-box {
    width: 100%;
    padding: 20px;
    min-width: auto;
  }

  .glass-box h2 {
    font-size: 22px;
    text-align: center;
  }

  .link {
    flex-direction: row;
    align-items: center;
    padding: 15px;
    text-align: center;
    justify-content: center;
  }

  .link img {
    width: 60px;
  }

  .link-info h3 {
    font-size: 14px;
  }

  .link-info p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .link img {
    width: 35px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .content-principal {
    gap: 30px;
  }

  .image-container img {
    max-width: 280px;
  }

  .glass-box {
    padding: 25px;
    min-width: 45%;
  }

  .glass-box h2 {
    font-size: 24px;
  }

  .link {
    padding: 12px;
  }

  .link img {
    width: 50px;
  }

  .link-info h3 {
    font-size: 18px;
  }

  .link-info p {
    font-size: 14px;
  }
}
