@charset "UTF-8";
.main-header {
  background: #fff;
}

.navbar .navbar-brand .logo-signature {
  height: 48px;
}
.navbar .navbar-nav .nav-item {
  margin-left: 1.5rem;
}
.navbar .navbar-nav .nav-link {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a0a0a;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.navbar .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #4f4a69;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.navbar .navbar-nav .nav-link:hover::before {
  transform: scaleY(1);
}
.navbar .navbar-nav .navbar-nav li.current-menu-item > a,
.navbar .navbar-nav .navbar-nav li.current_page_item > a,
.navbar .navbar-nav .navbar-nav li.current-menu-ancestor > a,
.navbar .navbar-nav .navbar-nav li.current_page_parent > a {
  opacity: 1;
  font-weight: 700;
  color: #4f4a69;
}
.navbar .navbar-nav .navbar-nav li.current-menu-item > a::before,
.navbar .navbar-nav .navbar-nav li.current_page_item > a::before,
.navbar .navbar-nav .navbar-nav li.current-menu-ancestor > a::before,
.navbar .navbar-nav .navbar-nav li.current_page_parent > a::before {
  transform: scaleY(1);
  background-color: #4f4a69;
}
.navbar .navbar-nav .navbar .navbar-nav li.current-menu-item > a {
  font-weight: 700;
  color: #4f4a69;
}

.toTop {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  cursor: pointer;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background-color: #4f4a69;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}
.toTop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.toTop svg {
  width: 24px;
  stroke-width: 3px;
  stroke: currentColor;
  fill: none;
}

.modal-publicidad .modal-publicidad__content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.modal-publicidad .modal-publicidad__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.modal-publicidad .modal-publicidad__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.modal-publicidad .modal-publicidad__footer {
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  margin-top: 2rem;
}
.modal-publicidad .modal-publicidad__footer .modal-publicidad__skip {
  pointer-events: auto;
}

.modal-publicidad .modal-dialog.modal-publicidad {
  max-width: 980px;
  padding-left: 14px;
  padding-right: 14px;
}

/* === Contenedor Principal (Minimizar Absolutos) === */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slider-section .slide-title {
  display: none !important;
}

/* === Ítem del Carrusel (Slide) === */
.hero-slide-item {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-slide-item .slide-content-wrapper {
  /* position: absolute;
  top: 0;
  left: 0;
  */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === IMAGEN (El elemento a centrar) === */
.slide-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image {
  display: block;
  width: 100%;
  height: auto;
}

/* === Título de fondo ELIMINADO === */
.hero-slider-section {
  min-height: 70vh;
}
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
  min-height: 70vh;
}
.hero-slider-section .carousel-item img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

/* ==================================== */
/* 1. Estilos de la Sección de Propósito */
/* ==================================== */
.purpose-section {
  padding: 5rem 0;
}

.purpose-title {
  font-size: 1.4rem;
  color: #0a0a0a;
  line-height: 1.4;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .purpose-title {
    font-size: 1.6rem;
  }
}

.purpose-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.btn-main-cta {
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  border: none;
  border-radius: 20px;
  background-color: #4f4a69;
  color: #ffffff;
  transition: all 0.3s ease;
  margin: auto;
}
.btn-main-cta:hover {
  background-color: #221760;
  color: #ffffff;
  transform: translateY(-2px);
}

.abuot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.section-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  text-align: center;
}
.section-text span {
  font-weight: 400;
  color: #221760;
}

/* ==================================== */
/* 1. LAYOUT DE LA COLUMNA DE VIDEO */
/* ==================================== */
@media (min-width: 992px) {
  .col-lg-5.order-1.order-lg-2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* ==================================== */
/* 2. CONTENEDOR DEL VIDEO */
/* ==================================== */
.video-container {
  position: relative;
  padding: 1rem;
  margin: 0 auto;
  max-width: 450px;
}
.video-container .video-overlay-wrapper {
  margin: 0 auto;
}

/* Video Modal */
#videoModal .modal-content {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  height: 519px;
  border: none;
}
@media (max-width: 990px) {
  #videoModal .modal-content {
    height: 282px;
  }
}

/* Evitar el fondo blanco del video */
#videoModal iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #ff3333;
  border-radius: 50%;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}
.play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1); /* Efecto de zoom */
}
.play-icon::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 15px 0 15px 25px; /* Altura, ancho izquierdo, ancho derecho */
  border-color: transparent transparent transparent white;
  margin-left: 5px; /* Ajuste para centrar visualmente */
}

.services-section {
  background-color: #e6e6e6;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.service-card {
  border-radius: 24px;
  padding: 3rem 2rem;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.service-card .service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.service-card .service-card__title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card .service-card__text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card .btn-main-cta {
  margin-top: auto;
}

.service-card--1 {
  background-color: #948faf;
}

.service-card--2 {
  background-color: #7d779f;
}

.service-card--3 {
  background-color: #69628a;
}

.service-card--4 {
  background-color: #5a5575;
}

@media (max-width: 991.98px) {
  .service-card {
    padding: 2.5rem 1.75rem;
  }
}
.newsletter-section {
  background-image: url("../img/fondo-newsletter.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 6rem 0;
}
.newsletter-section .newsletter-overlay {
  width: 100%;
  height: 100%;
  padding: 4rem 0;
}
.newsletter-section .section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  color: #ffffff;
}
.newsletter-section .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.newsletter-section .newsletter-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  color: #ffffff;
  margin: 0 auto;
}
.newsletter-section .newsletter-input {
  height: 55px;
  border-radius: 12px;
  font-size: 1rem;
  padding: 0 1.2rem;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-weight: 400;
  color: #69628a !important;
}
.newsletter-section .newsletter-input::placeholder {
  color: #999;
}
.newsletter-section .btn-main-cta {
  margin: auto;
  display: inline-block;
  padding: 0.8rem 2.5rem;
}
.newsletter-section .newsletter-msg {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .newsletter-section .newsletter-input {
    height: 50px;
  }
}
.book-section {
  background-color: #ffffff;
  padding: 5rem 0;
}
.book-section .section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
}
.book-section .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.book-section .book-image {
  max-width: 100%;
  height: auto;
}
.book-section .book-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
}
.book-section .btn-main-cta {
  margin-top: 0.5rem;
}

.book-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .book-content {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .book-section {
    padding: 3.5rem 0;
  }
  .book-section .book-text {
    text-align: center;
  }
  .book-section .btn-main-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-section {
  background-color: #5540cd;
  color: #ffffff;
  padding: 4.5rem 0;
}

.blog-card-intro {
  background-color: #221760;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card-intro .blog-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #ffffff;
  text-align: left;
}
.blog-card-intro .blog-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.blog-card-intro .blog-title::after {
  margin-left: 0;
}
.blog-card-intro .blog-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  color: #ffffff;
}
.blog-card-intro .btn-blog {
  margin-top: 2.5rem;
  align-self: flex-start;
}

.btn-blog {
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  border: none;
  border-radius: 20px;
  background-color: #4f4a69;
  color: #ffffff;
  transition: all 0.3s ease;
  background-color: #f2bc00;
  border-color: #f2bc00;
}
.btn-blog:hover {
  background-color: #221760;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-blog:hover {
  background-color: #cea000;
  border-color: #cea000;
}

.blog-card-highlight {
  position: relative;
  border-radius: 32px;
  padding: 2.5rem 2.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  /* capa IMAGEN */
  /* overlay para legibilidad */
  /* contenido arriba */
}
.blog-card-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(55%) brightness(0.95);
  transform: scale(1);
  transition: filter 0.45s ease, transform 0.45s ease;
  z-index: 0;
}
.blog-card-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.05) 100%);
  transition: opacity 0.45s ease;
  z-index: 1;
}
.blog-card-highlight > * {
  position: relative;
  z-index: 2;
}
.blog-card-highlight .blog-highlight-text {
  margin: 0;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  color: #ffffff;
}

/* hover SOLO desktop */
@media (hover: hover) {
  .blog-card-link:hover .blog-card-highlight::after {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.04);
  }
  .blog-card-link:hover .blog-card-highlight::before {
    opacity: 0.75;
  }
}
.blog-badge {
  position: absolute;
  top: 1.5rem;
  left: 2.75rem;
  z-index: 2;
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background-color: #f2bc00;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .blog-card-intro,
  .blog-card-highlight {
    padding: 2.25rem 1.75rem;
    text-align: center;
  }
  .blog-card-intro .blog-title {
    text-align: center;
  }
  .blog-card-intro .blog-title::after {
    margin: 0 auto;
  }
  .blog-card-intro .btn-blog {
    align-self: center;
  }
  .blog-card-highlight {
    min-height: 260px;
  }
}
.contact-section {
  background-image: url("../img/fondo-contact.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
}
.contact-section .contact-overlay {
  width: 100%;
  padding: 4.5rem 0;
}
.contact-section .section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  color: #ffffff;
}
.contact-section .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.contact-card {
  background: none;
}

.contact-input,
.contact-textarea {
  border-radius: 10px;
  border: none;
  background-color: #ffffff;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-weight: 300;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: black;
}
.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(242, 188, 0, 0.7);
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
}

/* Botón: reutilizamos estilos de btn-blog (amarillo) que ya definiste */
.btn-blog {
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  border: none;
  border-radius: 20px;
  background-color: #4f4a69;
  color: #ffffff;
  transition: all 0.3s ease;
  background-color: #f2bc00;
  border-color: #f2bc00;
  color: #1f1930;
  display: inline;
}
.btn-blog:hover {
  background-color: #221760;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-blog:hover {
  background-color: #cea000;
  border-color: #cea000;
  color: #ffffff;
}

/* Redes sociales */
.contact-socials {
  margin-top: 1.5rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  background-color: #0a0a0a;
  color: #f2bc00;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-section .contact-overlay {
    padding: 3.5rem 0;
  }
  .contact-card {
    padding: 2rem 1.5rem;
  }
}
.copy-footer {
  background-color: #221760;
  color: #ffffff;
}
.copy-footer .copy-text {
  font-size: 0.95rem;
  color: #ffffff;
}
.copy-footer .copy-logo img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: transform 0.2s ease;
}
.copy-footer .copy-logo:hover img {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 575.98px) {
  .copy-footer .d-flex {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.blog-head {
  width: 100%;
  height: 320px;
  background-image: url("../img/blog/fondo-head.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.blog-head::after {
  content: "";
  position: absolute;
  inset: 0;
}
.blog-head .container {
  position: relative;
  z-index: 2;
}
.blog-head__title {
  color: #ffffff;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-head__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .blog-head {
    background-image: none;
    background-color: #221760;
    height: 10rem;
  }
  .blog-head__title {
    text-align: center;
  }
}
.blog-list-section {
  background-color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Grilla real: 2 columnas, centrada como bloque, pero con items alineados a la izquierda */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  justify-content: center; /* centra el bloque completo de 2 columnas */
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-grid {
    /* 2 columnas con ancho “card” consistente (ajustable) */
    grid-template-columns: repeat(2, minmax(420px, 520px));
  }
}
/* ALTURA SOLO PARA CARDS DE GRILLA (blog + otras novedades) */
.blog-card-highlight--grid {
  height: 260px; /* <-- poné acá tu valor real (400 si querés como el diseño) */
}

/* por si alguna card trae h-100 heredado */
.blog-card-highlight--grid.h-100 {
  height: 400px;
}

.blog-list__more {
  margin-top: 1rem;
}

.blog-article {
  padding-bottom: 4rem;
}
.blog-article__image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}
.blog-article__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-article .section-text, .blog-article .blog-article__content p, .blog-article__content .blog-article p {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  /*text-align: center;*/
  line-height: 1.4;
}
.blog-article .section-text span, .blog-article .blog-article__content p span, .blog-article__content .blog-article p span {
  font-weight: 400;
  color: #221760;
}
.blog-article .blog-share {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.95rem;
  color: #0a0a0a;
}
.blog-article .blog-share__buttons {
  gap: 0.75rem;
}
.blog-article .blog-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: #69628a;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-article .blog-share__btn i {
  font-size: 1rem;
}
.blog-article .blog-share__btn:hover {
  background-color: #191147;
  transform: translateY(-1px);
}
@media (min-width: 992px) {
  .blog-article {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* Centrado de imágenes y galerías dentro del contenido del post */
.blog-article__content .wp-block-image,
.blog-article__content figure.wp-block-image,
.blog-article__content .wp-block-gallery,
.blog-article__content .wp-block-video,
.blog-article__content .wp-block-embed {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-article__content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Embeds (YouTube) prolijos y responsive */
.blog-article__content .wp-block-embed__wrapper iframe {
  width: 100%;
  max-width: 900px; /* opcional */
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-article__image-wrapper {
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
}
.blog-article__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-highlight {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-section--related {
  background-color: #f3f3f3;
}
.blog-section--related .section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-section--related .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.book-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: #e7e7e7;
  background-image: url("../img/libro/fondo-libro.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 6rem 0 4rem;
}
.book-hero__col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .book-hero__col-text {
    align-items: center;
    text-align: center;
  }
}
.book-hero__title {
  font-weight: 300;
  line-height: 1.3;
  font-size: 1.3rem;
  color: #0a0a0a;
  max-width: 32rem;
}
@media (min-width: 992px) {
  .book-hero__title {
    font-size: 1.875rem;
  }
}
.book-hero__book {
  width: 90%;
  max-width: 520px;
  height: auto;
}
@media (max-width: 767.98px) {
  .book-hero__book {
    margin-top: 2rem;
    width: 70%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn-book-cta {
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  border: none;
  border-radius: 20px;
  background-color: #4f4a69;
  color: #ffffff;
  transition: all 0.3s ease;
  background-color: #d19319;
  border-color: #221760;
  color: #fff;
  margin: 0;
}
.btn-book-cta:hover {
  background-color: #221760;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-book-cta:hover {
  background-color: #ad7915;
  border-color: #160f3f;
}

.about--book {
  background-color: #e7e7e7;
}

.about-book__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-book__text .section-title {
  text-align: center;
  max-width: none;
  margin: 0 0 1.5rem 0;
}
.about-book__text .section-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.author-section {
  background-color: #ffffff;
}
.author-section__img {
  display: block;
  margin: 0 auto;
  max-width: 380px;
  height: auto;
}
.author-section__text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  text-align: center;
}
.author-section__text strong {
  font-weight: 600;
  color: #221760;
}

.book-experience {
  background-color: #101b4a;
  color: #ffffff;
}
.book-experience__title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.book-experience__title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.book-experience__text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
}
.book-experience__text strong {
  font-weight: 600;
}
.book-experience .btn-book-cta {
  margin-top: 1rem;
  margin: 0 auto;
}

.book-experience__carousel {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile spacing */
@media (max-width: 767px) {
  .book-experience__carousel {
    margin-top: 2rem;
  }
}
.book-experience__img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.testimonials-section {
  position: relative;
  width: 100%;
  background-image: url("../img/libro/fondo-testimonios.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 4rem;
  color: #ffffff;
  text-align: center;
}
.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
}
.testimonial-slide.is-active {
  display: block;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 3rem 4rem;
  margin: 0 auto;
  max-width: 760px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  color: #0a0a0a;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.75rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.4rem;
  color: #d19319;
}

/* Flechas */
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #d19319;
  font-size: 2rem;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.testimonials-nav:hover {
  transform: translateY(-50%) scale(1.08);
  color: #ad7915;
}
.testimonials-nav--prev {
  left: -2.5rem;
}
.testimonials-nav--next {
  right: -2.5rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 2.2rem 1.7rem;
  }
  .testimonials-nav--prev {
    left: -0.5rem;
  }
  .testimonials-nav--next {
    right: -0.5rem;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 4rem 0 3rem;
  }
  .testimonial-card {
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }
  .testimonials-nav {
    font-size: 1.6rem;
  }
}
.contact--book {
  background-color: #221e39;
  background-image: none;
}

.book-footer {
  background: #ffffff;
  text-align: center;
}
.book-footer .section-title {
  font-size: 1.5rem;
  font-weight: 350;
  color: #0a0a0a;
  margin-bottom: 2.5rem;
  position: relative;
}
.book-footer .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #69628a;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.book-footer__intro {
  font-size: 1rem;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.book-footer__intro span {
  color: #221760;
  font-weight: 500;
}
.book-footer__block {
  margin-top: 2rem;
}
.book-footer__icon {
  width: 42px;
  height: auto;
  margin: auto;
}
.book-footer__label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #0a0a0a;
}
.book-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.book-footer__logos img {
  max-height: 60px;
  width: auto;
  transition: transform 0.2s ease;
}
.book-footer__logos img:hover {
  transform: scale(1.05);
}
.book-footer__divider {
  max-width: 70%;
  margin: 2rem auto;
  border: none;
  border-bottom: 1px solid #ccc;
}
.book-footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.book-footer__social a {
  font-size: 1.6rem;
  color: #ffffff;
  transition: color 0.2s ease;
}
.book-footer__social a:hover {
  background-color: #f2bc00;
  color: #ffffff;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #4f4a69;
  border-radius: 10px;
  border: 2px solid #e6e6e6;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #665f87;
}

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