@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");
/* VARIABLES */
/* CSS GENERAL */
img {
  transition: transform 0.3s ease-in-out;
}

/* img:hover {
    transform: scale(1.2); 
} 
*/
h1 {
  font-family: "Dancing Script", cursive;
  font-size: 50px;
  font-display: swap;
}

h2 {
  font-family: "Abel", sans-serif;
  font-size: 30px;
  color: #42A8C0;
  font-display: swap;
}

p {
  font-family: "Abel", sans-serif;
  font-size: 20px;
  font-display: swap;
}

li {
  color: gray;
  font-family: "Abel", sans-serif;
  font-size: 20px;
  list-style: none;
}

a:hover {
  text-decoration: none !important;
  color: #DC3545 !important;
}

button a {
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 912px) {
  iframe {
    width: 280px;
    height: 158px;
  }
}
.img_round {
  display: flex;
  justify-content: center;
  border-radius: 200px;
  background-color: rgb(251, 243, 243);
}
@media only screen and (max-width: 992px) {
  .img_round {
    width: 50%;
    height: auto;
  }
}

.creativecom a {
  color: #42A8C0 !important;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround*/
  height: 0;
  overflow: hidden;
  margin: 10px;
}

/* Estilos generales */
/* Estilos para la cabecera héroe */
.cabecera {
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  /* ---------- CTA ---------- */
  /* ---------- TABLET ---------- */
  /* ---------- MÓVIL ---------- */
  /* ---------- MÓVIL PEQUEÑO ---------- */
}
.cabecera .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.cabecera .hero-overlay {
  position: relative;
  z-index: 1;
}
.cabecera .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cabecera h1 {
  font-size: 66px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: -1px -1px 0 #7A5EFF, 0 -1px 0 #7A5EFF, 1px -1px 0 #7A5EFF, 1px 0 0 #7A5EFF, 1px 1px 0 #7A5EFF, 0 1px 0 #7A5EFF, -1px 1px 0 #7A5EFF, -1px 0 0 #7A5EFF;
}
.cabecera p {
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 30px;
  text-shadow: -1px -1px 0 black, 0 -1px 0 black, 1px -1px 0 black, 1px 0 0 black, 1px 1px 0 black, 0 1px 0 black, -1px 1px 0 black, -1px 0 0 black;
}
.cabecera .cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-image: linear-gradient(135deg, #F4A152 0%, #DC3545 100%);
  background-size: 200% auto;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cabecera {
    padding: 50px 20px;
  }
  .cabecera h1 {
    font-size: 52px;
  }
  .cabecera p {
    font-size: 22px;
  }
  .cabecera .cta-button {
    font-size: 22px;
    padding: 14px 28px;
  }
}
@media (max-width: 768px) {
  .cabecera {
    padding: 40px 15px;
  }
  .cabecera h1 {
    font-size: 40px;
    line-height: 1.15;
  }
  .cabecera p {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .cabecera .cta-button {
    font-size: 18px;
    padding: 14px 22px;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .cabecera h1 {
    font-size: 34px;
  }
  .cabecera p {
    font-size: 16px;
  }
}

.navbar {
  background-color: #222;
  overflow: hidden;
  text-align: center;
  /* Centra el texto en el contenedor */
}

.navbar a {
  font-family: "Abel", sans-serif;
  font-size: 26px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  /* Para mantener los enlaces en línea */
  margin: 0 10px;
  /* Espacio entre enlaces */
  text-align: center;
  /* Centra el texto en los enlaces */
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

@media screen and (max-width: 600px) {
  .navbar {
    text-align: center;
    /* Centra horizontalmente en dispositivos móviles */
    display: flex;
    flex-direction: column;
    /* Coloca los enlaces en columna */
    align-items: center;
    /* Centra verticalmente en dispositivos móviles */
  }
  .navbar a {
    font-size: 20px;
    margin: 5px 1;
    /* Espacio entre enlaces en dispositivos móviles */
    padding: 1px;
  }
}
/* Estilos adicionales */
.navbar a.button_nav {
  background-image: linear-gradient(135deg, rgb(245, 177, 77), rgb(237, 53, 115));
  border: none;
  color: white;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 26px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .navbar a.button_nav {
    font-size: 18px;
    /* Ajusta el tamaño del texto en dispositivos más pequeños */
    padding: 10px 15px;
    /* Ajusta el padding en dispositivos más pequeños */
    /* Ajusta el radio de borde en dispositivos más pequeños */
  }
}
.boton_contacto {
  background-image: linear-gradient(0deg, rgb(94, 5, 4), rgb(253, 19, 61));
  border: none;
  color: white;
  /* Cambié el color del texto a blanco */
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.boton_contacto a {
  color: white;
}
.boton_contacto a:hover {
  color: #222;
}

/* Estilos para hacerlo responsive (ajustar según tus necesidades) */
@media screen and (max-width: 768px) {
  .boton_contacto {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.lateral_index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  /* Establece la altura al 100% del viewport para centrar verticalmente */
  margin: 0;
  padding-top: 50px;
}
@media (max-width: 600px) {
  .lateral_index {
    height: auto;
    /* Permite que la altura se ajuste automáticamente al contenido */
    justify-content: flex-start;
  }
}

.boton_newsletter {
  background-image: linear-gradient(0deg, rgb(34, 4, 105), rgb(146, 106, 241));
  border: none;
  color: white;
  /* Cambié el color del texto a blanco */
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
  border-radius: 8px;
  margin: 20px auto;
  width: fit-content;
}
.boton_newsletter a {
  color: white !important;
}
.boton_newsletter a:hover {
  color: #222;
}

/* Estilos para hacerlo responsive (ajustar según tus necesidades) */
@media screen and (max-width: 768px) {
  .boton_contacto {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.fab {
  background-color: #009688;
  padding: 10px;
  font-size: 20px;
  width: 200px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 10px;
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 1;
}
.fab .fab:hover {
  opacity: 0.7;
}
.fab .fa-whatsapp {
  color: white;
}

.btn-basico {
  margin: 25px;
  background-color: #7A5EFF;
  border-radius: 5px;
  padding: 5px 20px;
}

.btn-basico_2 {
  margin: 25px;
  background-color: #DC3545;
  border-radius: 5px;
  padding: 5px 20px;
}
.btn-basico_2 a:hover {
  color: #7A5EFF !important;
}

.boton_comentario {
  background-color: #42A8C0;
  border: none;
  color: white;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 26px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.boton_comentario :hover {
  color: #DC3545;
}

.servicios-listado {
  margin-top: 10px;
  margin-bottom: 50px;
}
.servicios-listado ul {
  text-align: left;
}
.servicios-listado li {
  color: #DC3545;
  font-size: 30px;
}
@media screen and (max-width: 600px) {
  .servicios-listado {
    margin-bottom: 20px;
    margin-top: 5px;
  }
  .servicios-listado h2 {
    font-size: 25px;
  }
  .servicios-listado li {
    font-size: 25px;
  }
  .servicios-listado p {
    font-size: 25px;
    color: green;
  }
}

.texto_secundario {
  text-align: center;
}
.texto_secundario p {
  color: #42A8C0;
  font-family: "Abel", sans-serif;
}
.texto_secundario a {
  color: #42A8C0 !important;
}
.texto_secundario a:hover {
  color: blue !important;
}

.cta_precios-container {
  background: linear-gradient(180deg, #0F1B21 0%, #42A8C0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta_precios-container h2 {
  color: #fff;
}
.cta_precios-container h3 {
  color: #DC3545;
}
.cta_precios-container .precios-box {
  margin: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .servicios-index {
    padding-top: 10px;
  }
  .servicios-index h2 {
    font-size: 20px;
    /* Ajusta el tamaño para pantallas más pequeñas */
  }
  .servicios-index p {
    font-size: 15px;
  }
}

.tarjeta-presentación {
  margin-top: 40px;
  margin-bottom: 40px;
}
.tarjeta-presentación p {
  font-family: "Abel", sans-serif;
}
.tarjeta-presentación .container {
  display: flex;
  align-items: center;
  margin: 10px;
}
.tarjeta-presentación .persona {
  flex: 1;
  padding: 10px;
}
.tarjeta-presentación .foto {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
}
.tarjeta-presentación .curriculum {
  flex: 2;
  padding: 20px;
  background-color: #F0F0F0;
}
.tarjeta-presentación p {
  color: #222;
  font-family: "Abel", sans-serif;
}
@media screen and (max-width: 600px) {
  .tarjeta-presentación p {
    font-size: 15px;
  }
}

/*     //ESTUDIOS - EXPERIENCIA
 @mixin experiencia-container {
    margin-top: 60px;
    margin-bottom: 60px;
    p{font-family: $font_4;
    font-size: 25px;
    color: #222;
text-align: center;
font-style: italic;}
    border: 5px blue;

 }

 .experiencia-container {
     @include experiencia-container()
 }  */
.opiniones {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #0F1B21 0%, #42A8C0 100%);
}
.opiniones h2 {
  color: #fff;
}
.opiniones hr {
  border: 1px dashed #DC3545;
}
.opiniones .comentarios_text-box {
  margin-top: 25px;
  width: 80%;
}

.videos-container {
  background-image: linear-gradient(135deg, #F4A152 0%, #DC3545 100%);
  font-family: "Abel", sans-serif;
}
.videos-container h2 {
  color: #fff !important;
  font-weight: bold;
}
.videos-container .videos-titulo {
  padding-top: 15px;
  color: #fff;
  text-align: center;
}
.videos-container .video-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.videos-container .video-item {
  max-width: 400px;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 30px;
}
.videos-container .video-item:hover {
  border: 2px solid red;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card_blog {
  display: inline-flex;
  width: 250px;
  height: 150px;
  margin: 20px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
}
.card_blog hr {
  width: 90%;
  background-color: #42A8C0;
  margin-left: 0%;
  margin-right: 75%;
}
.card_blog h3 {
  font-family: "Abel", sans-serif;
  font-weight: bold;
  font-size: 22px;
}
.card_blog a {
  color: #42A8C0;
  font-family: "Abel", sans-serif;
}
.card_blog button {
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 30px;
  border: none;
  border-radius: 20px;
  background-color: #7A5EFF;
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
}
.card_blog h4 {
  font-size: 15px;
}
@media only screen and (max-width: 600px) {
  .card_blog {
    width: 100%;
    /* Full width on small screens */
    height: auto;
    /* Adjust height as needed */
    margin: 10px;
    /* Adjust margin as needed */
  }
  .card_blog hr {
    margin-right: 0;
  }
  .card_blog button {
    margin: 10px 0;
  }
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .card_blog {
    width: 300px;
    /* Adjust width for tablets */
    height: 180px;
    /* Adjust height for tablets */
  }
}

.blog-boton {
  background-image: linear-gradient(135deg, #3CA15A 0%, #2F2F35 100%);
  border: none;
  color: white;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  width: 200px;
  transition: background-color 0.3s;
  /* Agregar transición para suavizar el cambio de color */
  display: block;
  margin: 20px auto;
  /* Añadido para centrar horizontalmente y agregar margen superior e inferior */
}
.blog-boton a:hover {
  color: red;
  /* Cambia el color de fondo a verde en hover */
}

.footer {
  text-align: center;
  padding: 20px;
}
.footer p {
  color: #fff;
}
.footer a {
  color: #DC3545;
}

.clases_container {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border: #009688 2px solid;
  border-radius: 25px;
}
.clases_container .clases_card {
  padding: 10px;
}

.cabecera_corta {
  background-image: url("https://profesorarmoniaclasica.pro/assets/images/fondo_bach_cabecera.webp");
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cabecera_corta h1 {
  color: #fff;
  font-size: 3em;
  text-shadow: 2px 2px 5px #7A5EFF;
}
.cabecera_corta h2 {
  font-family: "Abel", sans-serif;
  color: white;
  font-size: 30px;
}
.cabecera_corta p {
  color: #42A8C0;
  font-size: 30px;
  font-display: swap;
}

@media only screen and (max-width: 912px) {
  .cabecera_corta {
    min-height: 60vh;
    /*    h1 {
        font-size: $font_si
    } */
  }
}
.creative_commons {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  transition: box-shadow 0.3s ease;
}
.creative_commons:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

article img {
  display: block;
  margin: auto;
  padding: 20px;
}
article h1 {
  text-transform: uppercase;
  font-family: "Abel", sans-serif;
  color: #42A8C0;
}
article h2 {
  font-family: "Abel", sans-serif;
  color: #42A8C0;
}
article h3 {
  font-size: 20px;
  color: #42A8C0;
  font-weight: normal;
}
article a {
  color: #42A8C0 !important;
}
article li {
  padding-left: 5px;
  color: #42A8C0;
}

.author {
  text-align: center;
}

.imagen_post {
  text-align: center;
  font-size: 20px;
  color: #DC3545;
}

.cta_blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  font-weight: bold;
  width: 90%;
}

.lateral-blog {
  text-align: center;
  margin-top: 10px;
  padding: 10px 50px;
}
.lateral-blog img {
  margin: auto;
  width: 150px;
}
.lista_contenidos_post li {
  list-style-type: disc;
}

.posts-list_container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 50px;
  /*  border-radius: 15px;
  border: 3px $color_2 solid; */
}
.posts-list_container li {
  font-size: 15px;
  color: #42A8C0;
  list-style-type: disc;
}
.posts-list_container li:hover {
  color: #DC3545;
}

.boton_blog:hover {
  background: linear-gradient(135deg, #b7410e, #6b8e23);
  /* degradado otoñal más intenso */
  color: #fff !important;
  /* texto blanco al pasar el ratón */
  transform: translateY(-3px);
  /* ligero efecto de “levantamiento” */
  box-shadow: 0 6px 12px rgba(183, 65, 14, 0.5);
}

.boton_blog {
  background: linear-gradient(145deg, #fff8f0, #f6e4d3);
  border: 2px solid #b7410e;
  padding: 12px 30px;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #111 !important;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(183, 65, 14, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.4s ease;
}
.boton_blog:hover {
  background: linear-gradient(145deg, white, rgb(248.5981132075, 235.7943396226, 223.7018867925));
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(183, 65, 14, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.boton_blog:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(183, 65, 14, 0.25);
}

.boton_contacto:hover {
  color: #42A8C0;
}

.comprar_libro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tags_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tags_container button {
  padding: 6px 15px 0px 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 3px solid #42A8C0;
  border-radius: 20px;
  background-color: #42A8C0;
}
.tags_container .tag_card {
  margin: 5px;
  display: inline-flex;
}
.tags_container a {
  color: #fff;
  font-size: 18px;
}
.tags_container a :hover {
  color: #DC3545;
}

.directorio_titulos h1 {
  text-transform: uppercase;
  font-family: "Abel", sans-serif;
  color: #42A8C0;
}

.ofertaclases_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ofertaclases_card {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Abel", sans-serif;
  width: 350px;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.ofertaclases_card .texto_clases {
  padding: 10px;
}
.ofertaclases_card h3 {
  font-size: 30px;
  color: #42A8C0;
  font-weight: bold;
}
.ofertaclases_card p {
  font-size: 18px;
  font-family: "Abel", sans-serif;
}
.ofertaclases_card a {
  color: #42A8C0;
}
.ofertaclases_card h4:hover {
  color: #42A8C0;
  color: red;
}

.boton_interesa {
  background-color: #7A5EFF;
  border: none;
  color: white;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 25px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.boton_interesa a {
  color: #f2f2f2;
}

.boton_interesa:hover {
  color: #DC3545;
}

.herramientas_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.herramientas_card {
  display: flex;
  flex-direction: column;
  width: 250px;
  text-align: center;
  text-align: left;
  font-family: "Abel", sans-serif;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media only screen and (max-width: 600px) {
  .herramientas_card {
    flex-direction: column;
  }
}
.herramientas_card img {
  width: 250px;
  overflow: hidden;
}
.herramientas_card .texto_clases {
  padding-left: 10px;
  padding: 10px;
  text-align: center;
}
.herramientas_card h2 {
  font-size: 20px;
  color: #42A8C0;
  font-weight: bold;
}
.herramientas_card p {
  font-size: 18px;
  font-family: "Abel", sans-serif;
}
.herramientas_card a {
  color: #42A8C0;
}
.herramientas_card h4:hover {
  color: #42A8C0;
  color: red;
}

.demo {
  border: 1px solid #42A8C0;
  border-collapse: colapso;
  padding: 5px;
  text-align: center;
}

.demo th {
  border: 1px solid #ffa500;
  padding: 5px;
  background: #42A8C0;
  color: #fff;
  padding: 15px;
}

.demo td {
  border: 1px solid #42A8C0;
  padding: 5px;
}

.border_chords {
  border: 1px solid red;
  text-align: center;
  background: #f2f2f2;
}

blockquote {
  font-style: italic;
  padding-left: 25px;
}

blockquote p {
  color: #4269C0;
  font-size: 20px;
}

.recursos_img {
  height: 155px;
  overflow: hidden;
}

.recursos_card {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Abel", sans-serif;
  width: 250px;
  height: 250px;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.recursos_card h2 {
  font-size: 30px;
  text-align: center;
  padding: 5px;
}

.texto_recursos {
  padding: 15px;
  border-radius: 10px;
  background-color: #70E5FF;
}

/* $font_3 */
.texto_recursos p {
  font-family: "Abel", sans-serif;
  font-style: italic;
}

.recursos_container {
  margin-top: 25px;
  margin-bottom: 25px;
}

.box_autor {
  display: inline-flex;
  height: 80px;
  border: 2px solid #42A8C0;
  border-radius: 10px;
  margin-bottom: 15px;
}
.box_autor img {
  border-radius: 50px;
}
.box_autor .texto_autor {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.banner-cta {
  font-family: "Abel", sans-serif;
  font-size: 30px;
  text-align: center;
  padding-block: 20px;
}
.banner-cta a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #bf3f00, #bc6c25, #ffba08);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}
.banner-cta a:hover {
  background: linear-gradient(135deg, #6b8e23, #b7410e, #d98e04);
  transform: scale(1.05);
  color: white !important;
}

@media screen and (max-width: 768px) {
  .banner-cta {
    font-size: 90%;
    padding-block: 15px;
  }
  .banner-cta a {
    padding: 8px 18px;
  }
}
.iframe-container {
  position: relative;
  padding-bottom: 78.13%;
  height: 0;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Estilos generales para el widget del autor */
.author-widget {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #e6dccf, #d2c8b0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Estilos para la imagen del autor */
.author-image img {
  padding: 10px;
  max-width: 100%;
  height: auto;
  border-radius: 70px 0 0 70px; /* Bordes redondeados solo en la esquina izquierda */
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.author-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Estilos para la información del autor */
.author-info {
  flex: 1;
  padding: 20px;
  border-radius: 0 15px 15px 0;
  background: rgba(0, 0, 0, 0.05); /* Sutil transparencia para resaltar el texto */
}

.author-info h2 {
  margin-top: 0;
  font-size: 20px;
  color: #3b2f1f;
  font-weight: 600;
}

.author-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .author-widget {
    flex-direction: column;
  }
  .author-info {
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
  }
  .author-image img {
    border-radius: 15px 15px 0 0;
  }
}
.creative_comons {
  font-size: 10px;
  background-color: rgba(148, 224, 218, 0.14);
  margin: 10px;
}

.banner-precio {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-precio span {
  font-size: 20px;
}
.banner-precio .precio-button {
  padding: 10px 20px;
  background-image: linear-gradient(135deg, rgb(245, 177, 77), rgb(237, 53, 115));
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.banner-precio .button-text {
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .banner-precio .custom-button {
    padding: 8px 16px;
    /* Ajustar el tamaño del botón para pantallas más pequeñas */
    font-size: 14px;
    /* Reducir el tamaño del texto para pantallas más pequeñas */
  }
}
@media (max-width: 480px) {
  .banner-precio .custom-button {
    padding: 6px 12px;
    /* Ajustar aún más el tamaño del botón para pantallas muy pequeñas */
    font-size: 12px;
    /* Reducir aún más el tamaño del texto para pantallas muy pequeñas */
  }
}

/* Estilo del banner */
.banner_cta_blog {
  background-image: linear-gradient(180deg, #0F1B21 0%, #42A8C0 100%);
  color: #fff;
  /* Color del texto */
  text-align: center;
  padding: 20px;
}
.banner_cta_blog h3 {
  font-family: "Abel", sans-serif;
  color: #fff;
  font-weight: bold;
}
.banner_cta_blog .boton-contacto {
  display: inline-block;
  background-image: linear-gradient(135deg, #F4A152 0%, #DC3545 100%);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}
.banner_cta_blog .boton-contacto:hover {
  background-color: #c0392b;
  /* Cambia el color al pasar el ratón */
}
.banner_cta_blog li {
  color: #f2f2f2;
}

/* Estilo del texto principal */
/* Estilo del subtexto */
.subtexto {
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
}

/* Estilo del botón de contacto */
/* Estilo al pasar el ratón sobre el botón */
.col-xl-4 {
  background-color: #f4f3f3;
  height: 2500px;
  background-image: linear-gradient(45deg, #d2c8b0 25%, transparent 25%, transparent 75%, #d2c8b0 75%, #d2c8b0), linear-gradient(45deg, #d2c8b0 25%, transparent 25%, transparent 75%, #d2c8b0 75%, #d2c8b0);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.leer_substack_button {
  background-color: #F76519;
  /* Color de fondo del botón */
  border: none;
  padding: 10px;
  /* Espaciado interno del botón */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.leer_substack_button a {
  color: white !important;
  /* Color especial para los enlaces dentro del botón */
}

.leer_substack_button:hover {
  background-color: #0056b3;
  /* Cambiar color de fondo al pasar el mouse sobre el botón */
}

.post_table_24 th {
  color: #7A5EFF;
  font-size: larger;
}
.post_table_24 td {
  font-family: "Abel", sans-serif;
  font-size: 22px;
}

.extracto_artículo {
  background: linear-gradient(135deg, #fdfdfd, #f7f7f9);
  border-left: 6px solid #4a6fa5;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

.boton_recibir_clases {
  background-image: linear-gradient(0deg, #7a1f1f, #c05359, #f43b52);
  border: none;
  color: white;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  width: fit-content;
}
.boton_recibir_clases a {
  color: white !important;
  text-decoration: none;
}
.boton_recibir_clases a:hover {
  color: #222 !important;
}

@media screen and (max-width: 768px) {
  .boton_recibir_clases {
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 10px;
  }
}
.pagina_video h1 {
  font-family: "Abel", sans-serif;
  color: #42A8C0;
  text-align: center;
}
.pagina_video p {
  font-family: "Abel", sans-serif;
}
.pagina_video .video-row {
  display: flex;
  justify-content: center;
  /* centra horizontalmente */
  align-items: center;
  /* opcional: centra verticalmente dentro del contenedor */
  padding: 1rem;
}

.enlace_articulo {
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s;
  text-align: center;
  background-color: #f3f3f3;
  margin: 10px;
  font-size: large;
  font-weight: bold;
}
.enlace_articulo a {
  color: #DC3545;
}
.enlace_articulo :hover {
  color: #1a3a6b;
}

.card_relacionados {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 30px auto;
  border-left: 5px solid #4b7bd8; /* tono azul académico */
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  background-color: rgba(224, 219, 219, 0.1568627451);
}
.card_relacionados hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}
.card_relacionados h3 {
  font-family: "Abel", sans-serif;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #7A5EFF;
}
.card_relacionados ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.card_relacionados li {
  margin-bottom: 12px;
  line-height: 1.5;
  color: #0056b3;
}
.card_relacionados a {
  text-decoration: none;
  color: red;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.card_relacionados hover {
  color: #0f2f75;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.18);
}

/*# sourceMappingURL=styles.css.map */
