/*
Theme Name:     Código AdrIA (Hijo)
Template:       twentytwentyfive
Author:         Ricardo Hoyos
Version:        1.0
Description:    Tema hijo personalizado para Código AdrIA
*/
/*CSS de la página en general */
header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 12px 24px;
  background-color: #f5f5f5;
}

body {
  background-color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  min-height: 100%;
  position: relative;
}

.mi-footer {
  background-color: #102e35;
  color: white;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* ¡NUEVO! Clase para desactivar el scroll del body */
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

.myBody p,
.myBody h1,
.myBody h2,
.myBody h3,
.myBody h4,
.myBody h5,
.myBody h6,
.myBody ul,
.myBody li {
  margin: 1em 0 1.5em 0;
}

.noMargin p,
.noMargin h1,
.noMargin h2,
.noMargin h3,
.noMargin h4,
.noMargin h5,
.noMargin h6,
.noMargin ul,
.noMargin li {
  margin: 0;
}

a:focus {
  outline: none; /* Elimina el borde de enfoque */
}

h3 {
  font-size: 24px; /* Un tamaño de fuente más grande para destacar */
  font-weight: 700;
}

/*Botones de la página */
.botonGeneral {
  padding: 10px 20px;
  border: 1.5px solid #1f2937;
  border-radius: 6px;
  color: #fff;
  background-color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.botonConMargen {
  margin-top: 40px;
}

.botonGeneral > a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.botonGeneral:hover {
  background-color: #374151; /* un poco más claro */
  transform: translateY(-2px);
}

.botonEnBloque {
  display: inline-block;
}

.botonesEnviar {
  font-size: large;
}

.alinearTexto {
  text-align: center;
}

/* Formularios */
.inputSus {
  width: 100%;
  padding: 12px 16px;
  margin: 10px 0;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.inputSus:focus {
  border-color: #4dd2d0;
  outline: none;
}

/* Utilidades */
.negrita {
  font-weight: 700;
}

.negritaSecundaria {
  font-weight: 500;
}

.margenSuperior {
  margin-top: 40px !important;
}

.pequena {
  font-size: 15px;
}

/* Página de prompts */

/* Página principal */
.tituloHome {
  font-size: 2.4rem;
  animation: fadeIn 1.2s ease-out;
}

.letraPequena {
  font-size: 1rem;
  color: #4b5563;
}

.padreBotones {
  text-align: center;
}

.textoDebajoTitulo {
  animation: fadeIn 1.5s ease-out;
  color: #3f6f7b;
}

.botonHero {
  animation: fadeIn 1.8s ease-out;
}
/*Animación de entrada para el texto de la página y videos */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contenedorHero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.contenedorIzquierdaHero {
  width: 30%;
  margin-top: 100px;
}

.contenedorDerechaHero {
  width: 65%;
}

.contenedorVideoYoutube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.videoYoutube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  animation: fadeIn 1.8s ease-out;
}

.bloqueApartadoDos {
  gap: 3rem;
}

.bloqueDosIzquierda {
  max-width: 45%;
}

.bloqueDosDerecha {
  max-width: 45%;
}

/*Formulario de pms este se usa en login y registro */
.pms-user-login-field,
.pms-last-name-field,
.pms-first-name-field {
  display: none;
}

.pms-form {
  font-family: "Poppins", sans-serif;
}

/* Ajuste general del wrapper de los campos */
.pms-form-fields-wrapper {
  display: flex;
  flex-direction: column;
}

/* Contenedor de cada plan */
.pms-subscription-plan {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.pms-subscription-plan:hover {
  border-color: #aaa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Asegura que el input y el label estén alineados */
.pms-subscription-plan > label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Descripción del plan */
.pms-subscription-plan-description {
  font-size: 14px;
  color: #444;
}

/* Renovación automática (checkbox) */
.pms-subscription-plan-auto-renew {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

/* Botón de pago */
#pms-paygates-wrapper {
  display: flex;
  justify-content: flex-start;
}

#pms-paygates-wrapper button,
#pms-paygates-wrapper input[type="submit"] {
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

#pms-paygates-wrapper button:hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/*Página de Academia */
/* Estilos para el contenedor de la página */
.page-container {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5; /* Fondo de la página */
  padding: 2rem 1rem;
}
/* Estilos para el menú de filtro */
.filter-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .filter-menu {
    flex-direction: column;
    align-items: center;
  }
}

/* Estilos para el contenedor de las tarjetas */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Alinea las tarjetas al centro */
  gap: 1.5rem; /* Espacio entre las tarjetas */
}
/* Estilos de la tarjeta principal */
.course-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem; /* Padding ajustado para hacerla más alta */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-width: 250px; /* Ancho ajustado para el grid y para que sea más delgada */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* Quita el subrayado del enlace */
  color: inherit; /* Hereda el color del texto */
  transition: all 0.3s ease;
  cursor: pointer; /* Cursor de enlace en toda la tarjeta */
}

.course-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}
/* Estilos para la imagen del curso */
.course-image {
  width: 80px; /* Tamaño de imagen más pequeño */
  height: 80px; /* Tamaño de imagen más pequeño */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem; /* Reducido el margen */
}
/* Estilos para la etiqueta de "Último Curso" */
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a16207;
  background-color: #fef9c3;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
/* Estilos para el título y subtítulo */
.course-card h3 {
  font-size: 1.1rem; /* Reducido el tamaño del título */
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.course-card p {
  font-size: 0.9rem; /* Reducido el tamaño de la descripción */
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1.5rem; /* Reducido el margen */
}

/*Página de recursos exclusivos */
.grupoGptsPago {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-basis: 30%; /* Tamaño inicial de cada elemento */
  flex-grow: 1; /* Crecen para ocupar el espacio sobrante */
  flex-shrink: 1; /* Se encogen si es necesario */
  margin: 5px; /* Opcional: añade margen entre los elementos */
}

.contenedorTarjetas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
}

.grupoGptDestacado {
  background: #fffbe6;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.enlacePruebaGpts {
  display: inline-block;
  background-color: #4dd2d0;
  color: #000;
  padding: 12px 20px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.enlacePruebaGpts:hover {
  background-color: #3f6f7b;
  color: #fff;
}

/* Animación de cargando de probar prompt */
#cargando .punto {
  animation: saltar 1s infinite;
}
#cargando .punto:nth-child(2) {
  animation-delay: 0.2s;
}
#cargando .punto:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes saltar {
  0% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
}

.input-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

/*Todos los medias de la página */
@media (max-width: 1350px) {
  .inputsProbarPromptSegundaSeccion {
    flex-direction: column;
  }
  #rcp_password_strength_meter {
    display: inline !important;
    box-decoration-break: clone;
    padding: 0.2rem 0.5rem;
    border-radius: 0.4rem;
  }
}

@media (min-width: 768px) {
  .inputsProbarPromptSegundaSeccion {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }

  .inputsProbarPrompt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
}
@media (max-width: 1280px) {
  .contenedorHero {
    flex-direction: column;
  }
  .contenedorIzquierdaHero,
  .contenedorDerechaHero {
    width: 100%;
  }

  .contenedorIzquierdaHero {
    text-align: center;
  }
  .textoDebajoTitulo {
    text-align: center;
  }

  .tituloHome {
    text-align: center;
  }
  .bloqueApartadoDos {
    flex-direction: column;
    gap: 3rem;
  }
  .bloqueDosIzquierda {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  .bloqueDosDerecha {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .grupoGptsPago {
    flex: none;
    width: 100%;
  }
  .padreGptDestacado {
    text-align: center;
  }
  .comparadorRespuestas {
    flex-direction: column;
  }
  .comparadorRespuestas .bloqueRespuestas {
    flex: 1 1 100%;
  }
  .plantillaBlog {
    width: 90%;
    max-width: 90%;
  }
}

/* Responsive en pantallas pequeñas */
@media (max-width: 600px) {
  .pms-subscription-plan {
    padding: 14px 16px;
  }

  .pms-subscription-plan-description {
    margin-left: 22px;
  }

  #pms-paygates-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }

  #wpadminbar {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999 !important;
  }
}

/* Probar prompt */
/* Estilos para el contenedor principal de los bloques */
.comparador {
  display: flex; /* Convierte el comparador en un contenedor flex */
  flex-direction: column; /* Por defecto, apila los bloques en columnas en móviles */
  gap: 2rem; /* Añade espacio entre los bloques (horizontal o vertical según flex-direction) */
  align-items: stretch; /* Esto hace que los items (bloques) se estiren para tener la misma altura que el más alto */
  margin-top: 2rem; /* Mantener un margen superior para el comparador si es necesario */
}

/* Media query para pantallas más grandes (ej. tablets y escritorio) */
@media (min-width: 768px) {
  .comparador {
    flex-direction: row; /* En pantallas más grandes, coloca los bloques en fila */
  }
}

/* Estilos para los bloques internos */
.bloque {
  flex: 1; /* Permite que los bloques crezcan y se encojan equitativamente */
  background-color: #fff; /* O el color de fondo que desees para los bloques */
  padding: 20px; /* Añade un relleno interno para el contenido de los bloques */
  border-radius: 8px; /* Bordes ligeramente redondeados (opcional) */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave (opcional) */
  display: flex; /* Convierte el bloque en flex para organizar su contenido */
  flex-direction: column; /* Apila el contenido del bloque verticalmente */
  justify-content: space-between; /* Empuja el botón al final y distribuye el espacio */
}

/* Estilos generales para h3 y p dentro de los bloques */
.bloque h3 {
  margin-top: 0; /* Asegura que no haya margen superior indeseado */
  margin-bottom: 20px; /* Margen inferior consistente para h3 */
  line-height: 1.3; /* Ajusta la altura de línea si es necesario */
}

.bloque p {
  margin-top: 0; /* Asegura que no haya margen superior indeseado */
  margin-bottom: 15px; /* Margen inferior consistente para los párrafos */
  line-height: 1.6; /* Ajusta la altura de línea si es necesario */
}

/* El último párrafo en cada bloque puede necesitar un margen inferior diferente si no quieres espacio antes del botón */
.bloque p:last-of-type {
  margin-bottom: 20px; /* Ajusta si el último párrafo está antes de un botón o div */
}

.textosQuedan {
  margin-top: 5rem;
}

.tituloTarjetasProbarPrompts {
  margin-top: 3rem;
}

.comparadorRespuestas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bloqueRespuestas {
  flex: 1 30%;
  border: 1px solid #ccc;
  padding: 15px;
  background: #fafafa;
}

#rcp_user_last_wrap {
  display: none;
}

/* 2. Reset de etiquetas internas */
.rcp_form p {
  margin-bottom: 20px;
}

#rcp_user_email_wrap input,
#rcp_password_wrap input,
#rcp_user_login_wrap input,
#rcp_password_again_wrap input,
#rcp_card_name_wrap input,
#rcp_user_first_wrap input,
#rcp_card_wrap div {
  padding: 12px 16px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  width: 95%;
  margin-bottom: 13px;
  max-width: 100%;
}

.rcp_form input:focus {
  border-color: #4dd2d0;
  outline: none;
}

.rcp_form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

/* 5. Botón de envío */
.botonEnviarRegistro {
  background-color: #428bca;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
  margin-top: 30px;
  max-width: 100%;
}

.rcp_registration_total {
  display: none;
}
/* Quitar mensaje prorateo */
body.logged-in .rcp_form p:first-of-type {
  display: none;
}

/* Y nos aseguramos de que el párrafo del botón de enviar SIEMPRE se muestre */
#rcp_submit_wrap {
  display: block !important;
}

.titulosFormulario {
  display: block;
  font-size: 120%;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1rem;
  padding: 0;
  white-space: nowrap;
  width: 100%;
  color: #666;
  margin-top: 30px;
}

#rcp_user_email_wrap label,
#rcp_password_wrap label,
#rcp_user_login_wrap label,
#rcp_password_again_wrap label,
#rcp_card_name_wrap label,
#rcp_card_wrap label,
#rcp_user_first_wrap label {
  display: none;
}

.rcp_login_link {
  display: none;
}

.suscripcionRegistro {
  margin-bottom: 30px;
}

.rcp_form p:has(input[type="submit"]) {
  margin: 0;
  padding: 0;
}

.rcp_registration_total {
  display: none;
}

.rcp-messages-top-container {
  text-align: center;
}

@media (min-width: 768px) {
  #rcp_registration_form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .rcp-columna-izquierda,
  .rcp-columna-derecha {
    flex: 1;
    min-width: 48%; /* Da un poco de espacio */
    padding: 20px; /* Relleno interior para el contenido */
  }

  .rcp-columna-izquierda {
    margin-right: 50px; /* Separa las columnas */
  }

  /* Asegura que los títulos no tengan margen superior que los empuje hacia abajo */
  .rcp-columna-izquierda > .titulosFormulario,
  .rcp-columna-derecha > .titulosFormulario {
    margin-top: 0;
  }

  /* También es buena idea quitar el margen superior del primer p en la columna derecha para alinearlo */
  .rcp-columna-derecha p:first-of-type {
    margin-top: 0;
  }
}

.mensaje-restringido {
  background-color: #fbfaf3;
  border: 1px solid #ccc;
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  margin-top: 20px;
}

.mensaje-restringido h2 {
  margin-bottom: 1rem;
  color: #102e35;
}

.mensaje-restringido a {
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.mensaje-restringido a:hover {
  text-decoration: underline;
}

.gallery-grid .mensaje-restringido-grid {
  grid-column: 1 / -1 !important;
  display: block !important; /* Forzamos a que se muestre como un bloque */
  width: 100% !important;
}

.rcp_form input[type="password"],
.rcp_form input[type="text"] {
  padding: 12px 16px !important;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  width: 95%;
  margin-bottom: 13px !important;
  max-width: 100%;
}

.comparadorPlanes {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#rcp_user_pass_requirements {
  display: none !important;
}

/* Contenedor principal que envuelve todo el formulario */
.contenedor-formulario-contacto {
  max-width: 1080px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contenedor-formulario-contacto h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #102e35;
  margin-top: 0;
  margin-bottom: 8px;
}

.contenedor-formulario-contacto .subtitulo-formulario {
  text-align: center;
  font-size: 1.1rem;
  color: #3f6f7b;
  margin-top: 0;
  margin-bottom: 40px;
}

/* Contenedor Flex principal del formulario */
.formulario-adria {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* Columnas del formulario */
.formulario-adria .form-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  justify-content: flex-start;
}

/* Estilo unificado para los campos de texto y textarea */
.formulario-adria input[type="text"],
.formulario-adria input[type="email"],
.formulario-adria input[type="tel"],
.formulario-adria textarea {
  flex: 1;
  width: 100%;
  padding: 16px;
  border: 1px solid #d1d5db; /* Borde sutil */
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9fafb; /* Fondo ligeramente gris */
  color: #102e35;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.formulario-adria textarea {
  height: 130px;
  resize: vertical;
}

/* Efecto de foco para los campos */
.formulario-adria input[type="text"]:focus,
.formulario-adria input[type="email"]:focus,
.formulario-adria input[type="tel"]:focus,
.formulario-adria textarea:focus {
  border-color: #4dd2d0;
  box-shadow: 0 0 0 3px rgba(77, 210, 208, 0.3);
  outline: none;
}

/* Texto que muestra el nombre del archivo seleccionado */
.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Footer del formulario */
.formulario-adria .form-footer {
  flex-basis: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Texto de protección de datos (legible) */
.formulario-adria .proteccion-datos {
  font-size: 13px;
  color: #6b7280; /* Color gris legible */
  line-height: 1.6;
}

.formulario-adria .proteccion-datos strong {
  color: #102e35;
}

/* Estilo para el checkbox de aceptación y su texto */
.consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #374151;
}

.formulario-adria input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
}

/* Botón de envío */
.formulario-adria input[type="submit"] {
  padding: 10px 20px;
  border: 1.5px solid #000;
  border-radius: 6px;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  width: 100%;
}

.formulario-adria input[type="submit"]:hover {
  background-color: #f5f5f5;
  color: black;
  transform: translateY(-2px);
}

input[type="file"].file-upload {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  transition: background-color 0.3s ease;
  padding: 20px;
}

input[type="file"].file-upload:hover {
  background-color: #f2fffe;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .contenedor-formulario-contacto {
    padding: 24px;
  }

  .formulario-adria {
    flex-direction: column;
    gap: 0;
  }

  .formulario-adria .form-col {
    gap: 20px; /* Reducimos el espacio entre campos en la misma columna */
    margin-bottom: 20px;
  }

  .formulario-adria textarea {
    min-height: 150px;
  }

  .formulario-adria input[type="submit"] {
    font-size: 16px;
    padding: 14px 24px;
  }
}

.altura-fantasma {
  visibility: hidden;
  overflow: hidden;
  height: 0;
}

.tabla-prompts {
  border-collapse: collapse;
  width: 100%;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tabla-prompts thead th {
  text-align: left;
  padding: 12px;
  font-size: 22px;
  border-bottom: 2px solid #3f6f7b;
}

.tabla-prompts tbody td {
  padding: 12px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}

.tabla-prompts tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.tabla-prompts tbody tr:hover {
  background-color: #eefaf9;
}

.tabla-prompts strong {
  color: #3f6f7b;
}

.tabla-prompts th:first-child,
.tabla-prompts td:first-child {
  width: 40%;
  background-color: #fff5f5;
}

.tabla-prompts th:last-child,
.tabla-prompts td:last-child {
  background-color: #f6fff5;
}

.plantilla-prompt {
  margin: 20px 0;
}

.plantilla-prompt h3 {
  font-size: 20px;
  color: #3f6f7b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plantilla-prompt pre {
  background-color: #f6fff5;
  border-left: 4px solid #4dd2d0;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lista-prompt {
  font-size: 20px;
  margin: 20px 0;
  padding-left: 20px;
  counter-reset: item;
}

.lista-prompt li {
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 6px;
}

.lista-prompt li strong {
  color: #3f6f7b;
}

.lista-prompt li::marker {
  color: #4dd2d0;
  font-weight: bold;
}

/*  */

/* Estilos Generales y Reseteo */
.prompts-container {
  max-width: 1200px;
  margin: 48px auto;
  padding: 32px;
  background-color: #f5f5f5;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-family: "Poppins", sans-serif;
}

.prompts-title {
  font-weight: 700;
  text-align: center;
  color: #102e35;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.prompts-description {
  text-align: center;
  color: #3f6f7b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Estilos para el menú de filtro de categorías */
.category-filter-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* Base para todos los botones */
.category-button {
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-color: #e5e7eb; /* Gris oscuro en lugar de negro puro */
  color: #6b7280;
}

/* Botón activo genérico */
.category-button.active {
  background-color: #1f2937;
  color: #ffffff;
}

/* Estilos para la cuadrícula de tarjetas */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.prompt-card {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  min-height: 150px;
}

.prompt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #374151;
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.card-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.4;
  flex-grow: 1;
}

/* Estilos para el visor del prompt (el modal) */
.prompt-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100% !important;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.prompt-viewer-overlay.visible {
  display: flex;
  opacity: 1;
}

.prompt-viewer-content {
  background-color: #fff;
  border-radius: 8px;
  max-width: 90%;
  width: 1000px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  margin: 50px auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.viewer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

.viewer-layout {
  display: flex;
  gap: 40px;
  align-items: start;
}

/* Media query para pantallas móviles */
@media (max-width: 767px) {
  .viewer-layout {
    flex-direction: column;
    gap: 20px;
  }
  .prompt-viewer-content {
    padding: 20px;
    max-height: calc(100vh - 40px);
  }
}

.viewer-left h3,
.viewer-right h3 {
  font-weight: 600;
  font-size: 1.3rem;
  color: #102e35;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.viewer-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  flex-basis: 0;
  border-right: 1px solid #f1f5f9;
  color: #374151;
}

.viewer-right {
  flex-grow: 1;
  flex-basis: 0;
}

.prompt-text-container {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1rem;
  white-space: normal; /* texto fluido */
  overflow-wrap: break-word; /* solo rompe cuando es necesario */
  word-break: normal;
  hyphens: auto;
}

.viewer-right .response-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #111827;
  white-space: normal;
  overflow-wrap: anywhere;
}

.viewer-right .response-text p {
  margin: 0 0 0.9rem;
}
.viewer-right .response-text ul,
.viewer-right .response-text ol {
  margin: 0 0 1rem 1.25rem;
}
.viewer-right .response-text li {
  margin: 0.25rem 0;
}

.viewer-right .response-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.96rem;
}
.viewer-right .response-text th,
.viewer-right .response-text td {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
}
.viewer-right .response-text thead th {
  background: #f3f4f6;
  font-weight: 600;
  color: #102e35;
}

.viewer-right .response-text pre {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
}
.viewer-right .response-text img {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0 1rem;
  display: block;
}

.copy-button-viewer {
  align-self: flex-start;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid #000;
  border-radius: 6px;
  font-weight: 600;
  background-color: transparent;
  color: #000;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  outline: none;
}

.copy-button-viewer.copied {
  background-color: #4caf50;
  color: #fff;
  border-color: #4caf50;
}
/* Estilos generales para el contenedor */
.gallery-container {
  font-family: "Inter", sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  padding: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

/* Estilos de la barra de navegación superior */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  color: #6b7280;
  width: 1.25rem;
  height: 1.25rem;
}

.nav-text {
  color: #6b7280;
}

/* Estilos del menú de filtro de categorías */
.category-filter-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.category-button {
  background-color: transparent;
  border: 2px solid #e5e7eb;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}
.category-button:hover,
.category-button.active {
  background-color: #1f2937;
  color: #ffffff;
}

/* Estilos de la galería de imágenes */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* Media queries para un diseño responsivo */
@media (min-width: 640px) {
  .gallery-container {
    padding: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-items-md-hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nav-items-md-hidden {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Estilos de la tarjeta individual */
.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-0.25rem);
}

/* Estilo de la imagen de la tarjeta, ahora apaisada */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 9; /* Apaisado 16:9 */
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Ajuste del tamaño de las etiquetas para pantallas más pequeñas */
@media (max-width: 768px) {
  .tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.tag-yellow {
  background-color: #fef9c3;
  color: #a16207;
}

.tag-red {
  background-color: #fee2e2;
  color: #b91c1c;
}

/* Estilos del modal */
.gallery-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100% !important;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  transition: opacity 220ms ease;
  justify-content: center;
  align-items: center;
}

.gallery-modal-overlay.visible {
  display: flex;
  opacity: 1;
}

.gallery-modal-content {
  background-color: #fff;
  border-radius: 8px;
  max-width: 90%;
  width: 1000px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  margin: 50px auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  position: relative;
}

/* Estilos para la imagen del modal */
.gallery-modal-content img {
  display: block;
  object-fit: contain;
  border-radius: 2px;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
}
/* Estilo para el body que previene el scroll */
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .gallery-modal-content {
    width: 95%;
    padding: 20px;
  }
  .gallery-modal-content img {
    max-height: 50vw;
  }
  .modal-close-btn {
    top: 5px;
    right: 5px;
  }
}
/* Estilos para el visor a pantalla completa */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 20000;
}
.fullscreen-overlay.visible {
  display: flex;
}
.fullscreen-overlay img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: zoom-out;
}
.fullscreen-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}
.modal-section {
  margin-top: 1.5rem;
}
.modal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.modal-section p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.4;
}

/* Estilos generales de la página */
.pricing-container {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Estilos de la tarjeta de plan */
.pricing-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Estilos de la lista de características */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #374151;
}

/* Iconos de SVG (visto y no visto) */
.feature-icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  margin-right: 0.75rem;
}

.feature-icon-x {
  width: 1.25rem;
  height: 1.25rem;
  color: #ef4444;
  margin-right: 0.75rem;
}

/* Estilos para el botón del plan */
.pricing-button {
  background-color: #1f2937;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-button:hover {
  background-color: #374151;
  transform: translateY(-2px);
}

.contenedorCienPorCien{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* * INSTRUCCIONES: 
         * Copia todo el contenido de esta etiqueta <style> y pégalo en tu archivo CSS general.
         * El HTML está diseñado para funcionar con estas clases.
        */

#elevenlabs-afiliado-page {
  --bg-secondary: #ffffff;
  --text-black: #000000;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;

  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;

}

#elevenlabs-afiliado-page .container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

#elevenlabs-afiliado-page .section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100% !important;
  max-width: 100% !important;
}

#elevenlabs-afiliado-page .hero-section {
  text-align: center;
  padding-top: 4rem; /* MODIFICADO: Reducido */
  padding-bottom: 3rem; /* MODIFICADO: Reducido */
}
#elevenlabs-afiliado-page .hero-section h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 48rem;
  margin: 0 auto;
  color: var(--text-black);
}
#elevenlabs-afiliado-page .hero-section p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
#elevenlabs-afiliado-page .hero-section .cta-button-wrapper {
  margin-top: 2.5rem;
}

#elevenlabs-afiliado-page .final-cta .botonGeneral {
  padding: 1.25rem 2.5rem;
}

#elevenlabs-afiliado-page .experience-section {
  background-color: var(--bg-secondary);
}
#elevenlabs-afiliado-page .section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
#elevenlabs-afiliado-page .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black);
}
#elevenlabs-afiliado-page .section-header p {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

#elevenlabs-afiliado-page .use-case-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
#elevenlabs-afiliado-page .use-case-card {
  background-color: var(--bg-main);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}
#elevenlabs-afiliado-page .use-case-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-black);
  margin: 0;
}
#elevenlabs-afiliado-page .use-case-card p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

#elevenlabs-afiliado-page .video-wrapper {
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
#elevenlabs-afiliado-page .video-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-black);
}
#elevenlabs-afiliado-page .video-wrapper p {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
#elevenlabs-afiliado-page .video-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}
#elevenlabs-afiliado-page .video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#elevenlabs-afiliado-page .features-list {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 56rem; /* 896px */
  margin-left: auto;
  margin-right: auto;
}
#elevenlabs-afiliado-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
#elevenlabs-afiliado-page .feature-icon-wrapper {
  flex-shrink: 0;
  background-color: #f3f4f6;
  padding: 0.75rem; /* Reducido para un look más fino */
  border-radius: 0.5rem; /* Cambiado a cuadrado redondeado */
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
#elevenlabs-afiliado-page .feature-icon-wrapper svg {
  width: 1.75rem; /* 28px */
  height: 1.75rem; /* 28px */
  color: var(--text-black);
}
#elevenlabs-afiliado-page .feature-text-content h4 {
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  color: var(--text-black);
  margin: 0;
}
#elevenlabs-afiliado-page .feature-text-content p {
  margin: 0.25rem 0 0 0;
  color: var(--text-secondary);
}

#elevenlabs-afiliado-page .profiles-section {
  background-color: var(--bg-secondary);
}
#elevenlabs-afiliado-page .profiles-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
#elevenlabs-afiliado-page .profile-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
#elevenlabs-afiliado-page .profile-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-black);
}
#elevenlabs-afiliado-page .profile-card p {
  margin-top: 1rem;
  color: var(--text-secondary);
}

#elevenlabs-afiliado-page .final-cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#elevenlabs-afiliado-page .final-cta h2 {
  font-size: 2.25rem;
  font-weight: 900;
}

#elevenlabs-afiliado-page .footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  text-align: center;
  color: var(--text-muted);
}
#elevenlabs-afiliado-page .footer p {
  margin: 0;
}
#elevenlabs-afiliado-page .footer .legal-note {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  #elevenlabs-afiliado-page .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #elevenlabs-afiliado-page .hero-section {
    padding-bottom: 5rem;
  } /* MODIFICADO: Reducido */
  #elevenlabs-afiliado-page .hero-section h1 {
    font-size: 3.75rem;
  }
  #elevenlabs-afiliado-page .hero-section p {
    font-size: 1.25rem;
  }
  #elevenlabs-afiliado-page .section-header h2 {
    font-size: 2.25rem;
  }
  #elevenlabs-afiliado-page .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #elevenlabs-afiliado-page .features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }
  #elevenlabs-afiliado-page .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #elevenlabs-afiliado-page .final-cta {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  #elevenlabs-afiliado-page .final-cta h2 {
    font-size: 3rem;
  }
}

.topview-promo-block {
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 70%;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* Estilos para los títulos principales */
.topview-promo-block h1 {
  font-size: 3.8em;
  color: #1a1a1a; /* Tono de negro */
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.topview-promo-block h2 {
  font-size: 2.8em;
  color: #1a1a1a; /* Tono de negro */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Estilos para los párrafos de texto */
.topview-promo-block p {
  font-size: 1.15em;
  margin-bottom: 25px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Clase para resaltar texto en negro */
.topview-promo-block .highlight {
  color: #1a1a1a; /* Tono de negro */
  font-weight: bold;
}

/* Estilo para el párrafo de introducción de sección */
.topview-promo-block .section-intro {
  font-size: 1.3em;
  font-weight: 500;
  color: #555;
  margin-bottom: 40px;
}

/* Estilo para la cuadrícula de características */
.topview-promo-block .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

/* Estilo para las tarjetas de características */
.topview-promo-block .feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #1a1a1a; /* Tono de negro */
}

/* Efecto hover en las tarjetas */
.topview-promo-block .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Estilo para los títulos de las tarjetas */
.topview-promo-block .feature-card h3 {
  color: #1a1a1a; /* Tono de negro */
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Estilo para los párrafos de las tarjetas */
.topview-promo-block .feature-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Estilo para el bloque de testimonio */
.topview-promo-block .testimonial {
  background-color: #e6e6e6; /* Gris claro */
  border-left: 8px solid #1a1a1a; /* Tono de negro */
  padding: 30px;
  margin: 50px auto;
  border-radius: 10px;
  max-width: 800px;
  font-style: italic;
  color: #444;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.topview-promo-block .testimonial p {
  margin-bottom: 15px;
}

/* Estilo para el autor del testimonio */
.topview-promo-block .testimonial .author {
  font-weight: bold;
  color: #1a1a1a; /* Tono de negro */
  text-align: right;
  display: block;
  margin-top: 15px;
}

/* Contenedor del botón de llamada a la acción */
.topview-promo-block .cta-button-container {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

/* Estilo del botón de llamada a la acción */
.topview-promo-block .cta-button {
  display: inline-block;
  background: linear-gradient(
    45deg,
    #1a1a1a,
    #333333
  ); /* Degradado de negro a gris oscuro */
  color: #fff;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Efecto hover en el botón */
.topview-promo-block .cta-button:hover {
  background: linear-gradient(45deg, #333333, #1a1a1a);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Media queries para un diseño responsivo en móviles */
@media (max-width: 768px) {
  .topview-promo-block {
    padding: 40px 15px;
  }

  .topview-promo-block h1 {
    font-size: 2.8em;
  }

  .topview-promo-block h2 {
    font-size: 2em;
  }

  .topview-promo-block p {
    font-size: 1em;
  }

  .topview-promo-block .section-intro {
    font-size: 1.1em;
  }

  .topview-promo-block .feature-grid {
    grid-template-columns: 1fr;
  }

  .topview-promo-block .feature-card {
    padding: 25px;
  }

  .topview-promo-block .feature-card h3 {
    font-size: 1.5em;
  }

  .topview-promo-block .cta-button {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

/* Estilos para la nueva lista de casos de uso con iconos */ 
.use-case-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.use-case-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.use-case-list li:hover {
  transform: translateY(-5px);
}

.use-case-list li svg {
  width: 50px;
  height: 50px;
  fill: #1a1a1a;
  margin-bottom: 15px;
}

.use-case-list li strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #1a1a1a;
}

.comment-form-url {
    display: none;
}

