/* RESET & BÁSICOS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  color: #fff;
  background-color: #000;
  text-align: center;
}

/* FONDO */
.fondo-css {
  position: relative;
  background:
    radial-gradient(
      ellipse at center,
      rgba(236, 220, 200, 0.85) 0%,
      rgba(150, 175, 145, 0.55) 40%,
      rgba(15, 15, 15, 0.95) 100%
    ),
    url('../images/Fondo.webp') center / 30% no-repeat fixed;
}


/* FONDO DIFUMINADO ELEGANTE LATERAL */
.fondo-css::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/Fondo.webp') center 90% / cover no-repeat;
  filter: blur(30px) brightness(0.95) saturate(1.15);
  transform: scale(1.1);
  z-index: -2;
}

.fondo-css::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.45)
  );
  z-index: -1;
}

/* SECCIÓN INICIO */
.seccion-inicio {
  min-height: 100vh;
  padding: 120px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENEDOR PRINCIPAL */
.envoltura {
  width: 100%;
  max-width: 480px;
  margin: auto;
}

.contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PERFIL */
.info-perfil {
  margin-bottom: -.5rem;
}

.foto-perfil img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nombre-perfil span {
  font-size: 2rem;
  margin-top: 1rem;
  display: block;
}

.estado-perfil {
  margin: 0.5rem 0;
}

.estado-activo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.punto-verde {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
}

.usuario {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* BOTÓN ONLYFANS */
.botones-cta {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.btn-onlyfans {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 3rem;
  width: 100%;
  max-width: 480px;
  height: 48px;
  font-size: 1.1rem;
  background-color: #fff;            /* fondo blanco */
  color: #000;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  animation: bouncing 2s ease-in-out infinite;
}

.btn-onlyfans:hover {
  background-color: transparent;    /* transición suave a transparente */
  color: #fff;
  border-color: #fff;
}

.btn-onlyfans:hover .icono-ctarred img {
  filter: invert(1);
  transition: filter 0.5s ease;
}

.btn-onlyfans > * {
  position: relative;
  z-index: 1;
}

.icono-ctarred img {
  width: 28px;
  height: 28px;
  margin-right: 1rem;
  transition: filter 0.5s ease;
}
.texto-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.texto-principal {
  font-weight: bold;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}

.subtexto {
  font-size: 0.8rem;
  opacity: 0.75;
}

@keyframes bouncing {
  0%, 100% { transform: translateY(0); }
  10%, 15% { transform: translateY(-15px); }
  20% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
  35% { transform: translateY(0); }
}

/* CONTADOR */
.contador-regresivo .promocion {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.tiempos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.tarjeta-tiempo {
  background: #fff;
  color: #000;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.tarjeta-tiempo .numero {
  font-size: 1.2rem;
  font-weight: bold;
}

.tarjeta-tiempo span {
  font-size: 0.65rem;
  margin-top: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.separador {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.punto {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

/* REDES SOCIALES Y COMPARTIR */
.botones-redes {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-red img,
.boton-compartir-icono img {
  width: 32px;
  height: 32px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.btn-red:hover img,
.boton-compartir-icono:hover img {
  transform: scale(1.1);
}

/* LAZY LOAD EFECTO */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

img:not([data-src]) {
  opacity: 1 !important;
}

img.loaded {
  opacity: 1;
}

/* MEDIA QUERIES */
@media (max-width: 480px) {
  .nombre-perfil span {
    font-size: 1.5rem;
  }

  .btn-onlyfans {
    font-size: 0.95rem;
  }

  .tarjeta-tiempo {
    width: 54px;
    height: 54px;
  }

  .tarjeta-tiempo .numero {
    font-size: 1rem;
  }

  .subtexto {
    font-size: 0.75rem;
  }
}

/* FONDO para pantallas menores a 1400px */
/* =========================
   FONDO · SOLO MÓVIL
========================= */
@media (max-width: 768px) {

  .fondo-css {
    background:
      radial-gradient(
        ellipse at center,
        rgba(236, 220, 200, 0.88) 0%,
        rgba(150, 175, 145, 0.6) 45%,
        rgba(15, 15, 15, 0.95) 100%
      ),
      url('../images/Fondo.webp') center 50% / 120% no-repeat fixed;
  }

  .fondo-css::before {
    background: url('../images/Fondo.webp') center 50% / 120% no-repeat;
    filter: blur(15px) brightness(0.95) saturate(1.15);
    transform: scale(1.15);
  }

}

