@import url('colores.css');

/* General Section Styling */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: auto;
  padding-top: 20px;
  padding: 20px;
}

/* Contenedor de Imágenes */
.contenedor-imagenes {
  position: relative; /* Necesario para la superposición */
  display: flex;
  flex-direction: column; /* Superposición vertical */
  align-items: center;
}

/* Estilo de las imágenes */
.imagen {
  position: relative; /* Para el hover-text */
  overflow: hidden; /* Esconde contenido fuera del borde */
  transition: transform 0.3s ease; /* Animación en hover */
  border-radius: 15px; /* Bordes redondeados */
}

.imagen img {
  width: 400px;
  height: auto;
  object-fit: cover;
}

.imagen1 {
  position: absolute;
  bottom: -90px; /* Superposición en la parte inferior */
  left: -250px; /* Superposición a la izquierda */
  z-index: 2;
}

.imagen2 {
  z-index: 1;
}

.hover-text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color);
  font-size: 1rem;
  padding: 10px;
  font-weight: bold;
  background-color: var(--primary-color);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.imagen:hover img {
  filter: blur(7px);
  cursor: pointer;
}

.imagen:hover .hover-text {
  opacity: 1;
}

.contenedor-textos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--text-color);
}

.contenedor-textos p {
  font-family: "Poppins", Sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  margin: 0;
}

.contenedor-textos-li ul {
  list-style: none;
}

.contenedor-textos-li {
  font-size: 1.3em;
  margin: 0;
}

.contenedor-textos-li li {
  position: relative;
  padding-left: 30px; /* Espacio para el marcador */
  margin-bottom: 10px;
  padding-top: 20px;
  list-style: none;
}

.contenedor-textos-li li::before {
  content: "✓"; 
  color: var(--color-only-fans);
  font-size: 1.5rem;
  position: absolute;
  left: 0; 
}

.creadora {
  color: var(--color-only-fans);
}


/* General FAQ Section Styles */
.faq {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* FAQ Item Styles */
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-only-fans);
  background-color: var(--background-color);
}

.faq-answer {
  display: none; /* Oculto por defecto */
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 10px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

/* Active FAQ Item Styles */
.faq-item.active .faq-answer {
  display: block; /* Muestra la respuesta */
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* Cambia el "+" a "x" */
  transition: transform 0.3s ease;
}

.home-section2 {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-section2-sub {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.imagen3 {
  width: 30%;
  max-width: 300px;
  text-align: center;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 15px -4px rgba(0, 175, 240, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagen3:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 25px -6px rgba(0, 175, 240, 1);
  cursor: pointer;
}

.imagen3 img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.imagen3:hover img {
  transform: rotate(10deg);
}

.imagen3 p {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.imagen3:hover p {
  color: var(--hover-color);
}

.home-section3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: var(--background-color);
}

.home-section3 p {
  padding: 20px;
}
.home-section3 a {
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-section3 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.home-section3 a:hover::before {
  left: 100%;
}

.home-section3 a:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
  background-color: var(--hover-color);
}

.home-section3 a:active {
  transform: translateY(0);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.home-section4 {
  max-width: 90%;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #b3e5fc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 10%;
}

.home-section4 img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.home-section4 h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 900;
  color: #333;
}

.home-section4 p {
  font-size: 1rem;
  color: #555;
  margin: 5px 0;
}


/* Estilos generales para home-section5 */
.home-section5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
  max-width: 90%;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contenido de texto */
.bio-content {
  max-width: 60%;
}

.bio-content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.bio-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Imagen de la biografía */
.bio-image img {
  width: 300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
