@charset "UTF-8";
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 70px;
  background: transparent;
  z-index: 1000;
}
@media (max-width: 768px) {
  .navbar {
    height: 90px;
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.header-swiper .swiper-pagination {
  position: absolute;
  left: 50px;
  top: 50%;
  text-align: left;
  width: auto;
}

.header-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.header-swiper {
  /* Estilos personalizados para la paginación vertical */
  /* Ajustes para pantallas menores a 1200px: dots simples abajo */
}
.header-swiper .swiper-pagination-vertical-custom {
  position: absolute;
  right: auto !important;
  left: 30px !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  width: auto !important;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}
.header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 5px 0;
  border-radius: 0;
  position: relative;
  color: white;
  font-weight: bold;
  font-size: 18px;
}
.header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet i {
  font-size: 16px;
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet-active {
  color: white;
}
.header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet-active i {
  width: 40px;
  background: white;
}
@media (max-width: 1199.98px) {
  .header-swiper .swiper-pagination-vertical-custom {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
  }
  .header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: #fff !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    padding: 0 !important;
    color: transparent !important;
    font-size: 0 !important;
    display: inline-block !important;
    border: 2px solid #2A3551 !important;
    opacity: 1 !important;
    font-weight: normal !important;
  }
  .header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet i {
    display: none !important;
  }
  .header-swiper .swiper-pagination-vertical-custom .swiper-pagination-bullet-active {
    background: #2A3551 !important;
    border-color: #2A3551 !important;
  }
}

.team-swiper .swiper-pagination {
  bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #333;
  color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 800px;
}
@media (max-width: 768px) {
  .slider-container {
    height: 600px;
  }
  .slider-container .background-img {
    background-position: left;
  }
  .slider-container .page-template p {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .slider-container .page-template p {
    font-size: 18px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  .page-template p {
    font-size: 18px;
  }
}

.header-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.section-blue {
  padding: 100px 0;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .section-blue {
    padding: 50px 0;
  }
}

.section-blue .title {
  color: #007BFF;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-blue .title {
    font-size: 36px;
  }
}

.section-blue .tabs-content {
  margin-top: 30px;
}

.section-blue .tab-pane {
  background-color: transparent;
  padding: 20px 0px;
  border-radius: 5px;
  box-shadow: none;
  min-height: 580px;
}
@media (max-width: 768px) {
  .section-blue .tab-pane {
    min-height: 200px;
  }
}

.section-blue .tab-content {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .section-blue .tab-content {
    margin-top: 20px;
  }
}

.tab-button {
  margin-top: 20px;
}

.tab-title {
  font-size: 30px;
  font-weight: bold;
  color: #2A3551;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#myTabContent p {
  color: #2A3551;
  font-size: 22px;
  text-align: justify;
}
@media (max-width: 768px) {
  #myTabContent p {
    font-size: 18px;
  }
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.img-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-cards {
  padding: 50px 0;
}
.section-cards .btn-custom {
  margin-top: auto !important;
}

.section-cards .section-title {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-cards .section-title {
    font-size: 36px;
  }
}

.card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 20px;
  text-align: center;
  margin: 10px;
}

.card i {
  font-size: 60px;
  margin-bottom: 15px;
  color: #007BFF;
}

.card .fa-star {
  font-size: 25px;
  color: #FFD700;
  margin-bottom: 15px;
}

.card .card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card .card-description {
  font-size: 19px;
  color: #555;
}

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

.card-deck .card {
  flex: 1 1 calc(33.333% - 20px);
  margin: 10px;
  max-width: 400px;
  min-height: 450px;
}

@media (max-width: 1200px) {
  .card-deck .card {
    flex: 1 1 100%;
  }
}
.section-valores .section-title {
  color: #2A3551;
}

.section-overlay {
  position: relative;
  height: 600px;
  background: url("./images/fondo-v.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: url("../images/fondo-v.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
@media (max-width: 768px) {
  .section-overlay {
    height: 400px;
  }
}
.section-overlay .section-title {
  margin-bottom: 0;
}

.section-overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/fondo-v.jpg");
  background-size: 100%;
  height: 100%;
  z-index: 999;
}

.section-overlay .content {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.section-team {
  padding: 50px 0;
  background: #fff;
}

.section-team .section-top-title {
  text-align: center;
  color: #007BFF;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-team .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-team .section-title {
    font-size: 24px;
  }
}

.section-team .description {
  text-align: center;
  font-size: 26px;
  color: #555;
  margin-bottom: 40px;
}

.team-slider {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .team-slider {
    padding: 0 20px;
  }
}

.team-card {
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 20px;
  text-align: center;
  margin: 10px;
  width: 100%;
  height: 100%;
  max-height: 550px;
}

.team-card img {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  max-height: 340px;
  height: 100%;
  object-fit: contain;
}

.team-card .team-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-card .team-position {
  font-size: 18px;
  color: #777;
  margin-bottom: 5px;
}

.team-card .team-email {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.team-card .team-linkedin {
  font-size: 24px;
  color: #007BFF;
}

.section-reviews {
  padding: 50px 0;
  background: #f9f9f9;
}

.review-title {
  color: #007BFF;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.review-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.review-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.review-card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  margin-bottom: 20px;
}

.review-card .card-body {
  padding: 20px;
}

.review-stars {
  color: #FFD700;
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.review-author {
  font-size: 18px;
  color: #777;
}

.section-reviews {
  padding: 50px 0;
  background: #f9f9f9;
}

.review-title {
  color: #007BFF;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.review-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.review-description {
  font-size: 22px;
  color: #555;
  margin-bottom: 40px;
}

.review-card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  margin-bottom: 20px;
}

.review-card .card-body {
  padding: 20px;
  min-height: 400px;
  padding-top: 40px;
}
@media (max-width: 1200px) {
  .review-card .card-body {
    padding: 20px;
    min-height: auto;
  }
}

.review-stars {
  color: #FFD700;
  margin-bottom: 15px;
}

.review-text {
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

.review-author {
  font-size: 20px;
  color: #2b2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*
.swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 5px 10px;
    margin: 5px 0;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}
*/
.swiper-pagination-bullet {
  margin-top: 30px !important;
}

.swiper-pagination-bullet i {
  margin-right: 5px;
}

.swiper-pagination-bullet-active {
  color: #007BFF;
}

.swiper-pagination-bullet:hover {
  cursor: pointer;
  color: #007BFF;
}

.logo img {
  object-fit: cover;
  max-width: 200px;
}
@media (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }
}

@media (max-width: 1200px) {
  .swiper-wrapper {
    padding-top: 0px !important;
  }
}
.nav-link {
  font-weight: bold;
  font-size: 20px;
}

.background-img {
  background-image: url("https://loremflickr.com/1920/1080");
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
  top: 0;
  background-position: 70%;
}
.background-img-mobile {
  background-image: url("https://loremflickr.com/1920/1080");
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
  top: 0;
  background-position: center;
}
@media (min-width: 1201px) {
  .background-img-mobile {
    display: none;
  }
}

.section-blue .background-img {
  background-image: url("https://loremflickr.com/1920/1080");
  height: 100%;
  width: 80%;
  object-fit: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: 100%;
  top: 10%;
  object-position: right;
  display: flex;
  right: 0;
}

.section-logos .background-img {
  background-image: url("https://loremflickr.com/1920/1080");
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
  top: 0;
  left: 0;
}
.section-logos .background-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 4, 4, 0.4); /* Oscurece el fondo (ajustá el 0.5 si querés más o menos oscuro) */
}

.section-blue .background-img {
  background-image: url("https://loremflickr.com/1920/1080");
  height: 100%;
  width: 80%;
  object-fit: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: 100%;
  top: 10%;
  object-position: right;
  display: flex;
  right: 0;
}

.footer {
  padding: 80px 0;
  position: relative;
  padding-bottom: 50px;
  color: white;
}
.footer .contacto i {
  margin-right: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-logo img {
  max-width: 300px;
}

.footer-social a {
  color: white;
  font-size: 20px;
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .footer-social a {
    margin-right: 10px;
  }
}

.footer-social a:hover {
  color: #ddd;
}

.slide-title {
  color: #2A3551 !important;
  font-weight: bold;
  font-size: 70px;
  max-width: 900px;
  font-family: "work sans", sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .slide-title {
    color: #fff !important;
  }
}

.slide-description {
  max-width: 1000px;
  color: #2A3551;
  font-weight: bold;
  font-size: 25px;
  text-align: center;
}
@media (max-width: 1200px) {
  .slide-description {
    color: #2A3551 !important;
  }
}

.slide-button {
  background: transparent;
  color: #2A3551;
  padding: 10px 50px;
  border-radius: 20px;
  border: 2px solid #2A3551;
  font-size: 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
}
@media (max-width: 767px) {
  .slide-button .slide-button {
    background: #fff;
    padding: 5px 50px;
    margin-bottom: 22px;
  }
}

.nav-tabs .nav-link {
  color: #2A3551;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 5px solid transparent;
}
@media (max-width: 767px) {
  .nav-tabs .nav-link {
    font-size: 15px;
  }
}
.nav-tabs .nav-link.active {
  background: transparent;
  border: none;
  color: #007BFF;
  border-bottom: 5px solid #00c9ff;
}

.btn-custom {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  border: 2px solid #fFF;
}

.section-cards {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section-cards {
    padding: 50px 0;
  }
}

.section-team {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .section-team {
    padding: 40px 0;
  }
}

.section-team .section-title {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}
@media (max-width: 768px) {
  .section-team .section-title {
    font-size: 36px;
  }
}

.section-logos {
  padding: 50px 0;
}

.logos-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.logos-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-swiper img {
  filter: grayscale(100%);
  transition: filter 0.3s;
  max-width: 2300px;
  object-fit: scale-down;
  width: 100%;
  margin-right: 40px;
  max-height: 150px;
}

.logos-swiper img:hover {
  filter: none;
}

.section-logos {
  padding: 80px 0;
  padding-bottom: 120px;
}

.section-title {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 70px;
  color: #1cb6dc;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-blue img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  width: 100%;
}

.section-reviews {
  padding: 80px 0;
  background: #f9f9f9;
}

.review-heading {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
}

.review-author .fa-quote-right {
  font-size: 70px;
  margin-right: 30px;
  margin-right: 30px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 22px;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 15px;
  }
}
.team-slider .swiper {
  padding-bottom: 60px;
}

.page-template .header {
  background: url("https://picsum.photos/1920/600?random=1") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}
.page-template .header.header1 {
  background: url("/images/cap1.jpeg") center/cover no-repeat;
}
.page-template .header.header2 {
  background: url("/images/mentoria/foto 1.jpeg") center/cover no-repeat;
}
.page-template .header.header3 {
  background: url("/images/seleccion/foto 1.jpg") center/cover no-repeat;
}
.page-template .header.header4 {
  background: url("/images/desarrollo/1.jpg") center/cover no-repeat;
}
.page-template .header.header5 {
  background: url("/images/cambio/unnamed.jpg") center/cover no-repeat;
}
.page-template .header.header6 {
  background: url("/images/desempeno/18 Foto Gestión DESEMPEÑO.jpg") center/cover no-repeat;
}
.page-template .header.header-ebook {
  background: url("/images/ebook/Imagen 5.jpg") center/cover no-repeat;
}
.page-template .header.header-postulaciones {
  background: url("https://pivotarconsultora.com/wp-content/uploads/2025/05/postulaciones-liston.jpg") center/cover no-repeat;
}
.page-template .header.header-contactanos {
  background: url("https://pivotarconsultora.com/wp-content/uploads/2025/05/liston_contactanos.png") center/cover no-repeat;
}
.page-template .header::after, .page-template .full-bg-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.page-template .header > *, .page-template .full-bg-section > * {
  position: relative;
  z-index: 2;
}
.page-template .full-bg-section {
  background: url("https://picsum.photos/1920/500?random=2") center/cover no-repeat;
  color: white;
  padding: 200px 20px;
  text-align: center;
  position: relative;
  background-size: contain;
}
.page-template .card-ebook {
  background-size: contain;
  background-position: top;
  height: 550px;
  color: white;
  display: flex;
  align-items: end;
  padding: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.page-template .card-ebook:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.page-template .icon-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.page-template .swiper-slide:hover .icon-img {
  transform: scale(1.1);
}
.page-template .item-icon {
  text-align: center;
  margin-bottom: 30px;
}
.page-template .btn-primary, .page-template .btn-secondary, .page-template .btn-light {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}
.page-template .btn-primary:hover {
  background-color: #0056b3;
}
.page-template .btn-secondary:hover {
  background-color: #495057;
}
.page-template .btn-light:hover {
  background-color: #f8f9fa;
  color: #000;
}
.page-template section {
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-template .header {
    padding: 80px 15px;
  }
  .page-template .full-bg-section {
    padding: 80px 15px;
  }
  .page-template .card-ebook {
    height: 300px;
  }
  .page-template h1 {
    font-size: 2.5rem;
  }
  .page-template h2 {
    font-size: 25px !important;
  }
  .page-template h3, .page-template h5 {
    font-size: 25px !important;
  }
}
.page-template p {
  font-size: 22px;
}
.page-template h2 {
  color: #2A3551;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-template h5 {
  color: #2A3551;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-template h3 {
  color: #2A3551;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page-template h3 {
    margin-left: 0px;
  }
}
.page-template .text-image-content {
  font-size: 20px;
  margin-bottom: 10px;
}

.text-image-content strong {
  text-transform: uppercase;
}

.single-ebook .header {
  background: url("https://picsum.photos/1920/600?random=1") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}
.single-ebook .header.header-ebook1 {
  background: url("/images/ebook/Imagen 5.jpg") center/cover no-repeat;
}
.single-ebook .header.header-ebook2 {
  background: url("/images/ebook/foto 6.jpeg") center/cover no-repeat;
}
.single-ebook .header.header-ebook3 {
  background: url("/images/ebook/fondoe-bookequiposcolaborativos.png") center/cover no-repeat;
}
.single-ebook .header.header-ebook4 {
  background: url("/images/ebook/fondoe-bookescuchaactiva.png") center/cover no-repeat;
}
.single-ebook .header::after, .single-ebook .full-bg-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.single-ebook .header > *, .single-ebook .full-bg-section > * {
  position: relative;
  z-index: 2;
}
.single-ebook .full-bg-section {
  background: url("https://picsum.photos/1920/500?random=2") center/cover no-repeat;
  color: white;
  padding: 200px 20px;
  text-align: center;
  position: relative;
  background-size: contain;
}
.single-ebook .card-ebook {
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
  display: flex;
  align-items: end;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.single-ebook .card-ebook:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.single-ebook .page-template .icon-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.single-ebook .swiper-slide:hover .icon-img {
  transform: scale(1.1);
}
.single-ebook .item-icon {
  text-align: center;
  margin-bottom: 30px;
}
.single-ebook .btn-primary, .single-ebook .btn-secondary, .single-ebook .btn-light {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}
.single-ebook .btn-primary:hover {
  background-color: #0056b3;
}
.single-ebook .btn-secondary:hover {
  background-color: #495057;
}
.single-ebook .btn-light:hover {
  background-color: #f8f9fa;
  color: #000;
}
.single-ebook section {
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-ebook .header {
    padding: 80px 15px;
  }
  .single-ebook .full-bg-section {
    padding: 80px 15px;
  }
  .single-ebook .card-ebook {
    height: 300px;
  }
  .single-ebook h1, .single-ebook h2 {
    font-size: 2rem;
  }
  .single-ebook h3, .single-ebook h5 {
    font-size: 1.5rem;
  }
}
.single-ebook p {
  font-size: 22px;
}
@media (min-width: 1200px) {
  .single-ebook p {
    font-size: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .single-ebook p {
    font-size: 18px;
  }
}
.single-ebook h2 {
  color: #2A3551;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}
.single-ebook h5 {
  color: #2A3551;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.single-ebook h3 {
  color: #2A3551;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.single-ebook .text-image-content {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Estilos para el swiper de valores */
/*.valores-swiper {
    width: 100%;
    padding: 20px 0 40px;
}*/
/*
.valores-swiper .swiper-slide {
    display: flex;.page-template h3
    justify-content: center;
    align-items: center;
    padding: 10px;
}
*/
.rounded-card {
  border-radius: 50% !important;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.valores-swiper .card {
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 350px;
  height: 350px;
}
@media (max-width: 1600px) {
  .valores-swiper .card {
    width: 280px;
    height: 280px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .valores-swiper .card {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.valores-swiper .card i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #007BFF;
}

.valores-swiper .card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.valores-swiper .card-description {
  font-size: 20px;
  color: #666;
}

/* Flechas de navegación */
.swiper-button-next,
.swiper-button-prev {
  color: #007BFF;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

/* Puntos de paginación */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007BFF;
}

/* Responsive */
@media (max-width: 768px) {
  .valores-swiper .card {
    padding: 20px;
  }
  .valores-swiper .card i {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .valores-swiper .card-title {
    font-size: 18px;
  }
  .valores-swiper .card-description {
    font-size: 18px;
  }
}
.section-cards img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 150px;
  margin: 20px auto;
}

.title-page {
  color: #2A3551;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Negro con 50% de opacidad */
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}
.card-content h5 {
  color: #fff;
}
.card-content p {
  font-size: 16px;
}

/* --- Tarjetas --- */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px; /* Altura mínima agradable */
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.testimonial-slider {
  /* --- Dots --- */
  /* --- Flechas --- */
}
.testimonial-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.testimonial-slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid #007bff;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.testimonial-slider .swiper-pagination-bullet-active {
  background-color: #007bff;
  transform: scale(1.3);
}
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
  color: #007bff;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
  color: #0056b3;
}
.testimonial-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Espacio entre bullets */
}
.testimonial-slider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
  transform: scale(1);
}
.testimonial-slider .swiper-pagination-bullet:hover {
  background: #2A3551;
}
.testimonial-slider .swiper-pagination-bullet-active {
  background: #2A3551;
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.bg-light-custom {
  background-color: #f7f7f7 !important;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

.card-ebook {
  position: relative;
  max-width: 400px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* Usamos la imagen inline, pero la limitamos visualmente */
  background-repeat: no-repeat;
  background-size: 100% 180px; /* la imagen solo en la parte superior */
  background-position: top;
  background-color: #fff; /* relleno blanco debajo */
}

.card-ebook .dark-overlay {
  display: none; /* opcional: ocultar superposición si no se necesita */
}

.card-ebook .card-content {
  padding: 30px;
  text-align: center;
  height: 200px;
  position: relative;
  bottom: 0;
  background-color: #fff;
}

.card-ebook .card-content h5 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.card-ebook .card-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.single-ebook .title-page {
  color: #2A3551;
}
.single-ebook .subtitle-ebook {
  color: #2A3551;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .single-ebook .subtitle-ebook {
    font-size: 25px;
  }
}

h1, h2, h3, h4, h5, h6, .title, .section-title {
  text-transform: uppercase !important;
}

.py-5.text-center p {
  font-size: 28px;
}
@media (max-width: 1200px) {
  .py-5.text-center p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .py-5.text-center p {
    font-size: 18px;
  }
}

.header p {
  font-size: 27px;
}

p.mb-4.text-center {
  font-size: 28px;
}
@media (max-width: 1200px) {
  p.mb-4.text-center {
    font-size: 20px;
  }
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
  height: 500px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.content-card-equipo {
  min-height: 200px;
}

.menu-sub-item {
  text-transform: capitalize;
}

.card-ebook {
  position: relative;
  height: 500px;
  color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Contenedor para la imagen que usará el background del HTML */
.card-ebook-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 200px); /* Altura total menos la del card-content */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 200px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  color: #000;
  z-index: 2;
}

.social-container {
  display: flex;
}
@media (max-width: 120px) {
  .social-container {
    justify-content: center;
    width: 100%;
  }
}

/* Template ebooks */
.header-ebooks {
  background: linear-gradient(120deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  padding: 100px 0 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://pivotarconsultora.com/wp-content/uploads/2025/05/liston2-png.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
.header-ebooks h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.header-ebooks p {
  font-size: 1.3rem;
  margin-bottom: 0;
}
@media (max-width: 1299.98px) {
  .header-ebooks::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 30, 40, 0.85) 0%, rgba(30, 30, 40, 0.65) 40%, rgba(30, 30, 40, 0.35) 70%, rgba(30, 30, 40, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .header-ebooks > * {
    position: relative;
    z-index: 2;
  }
}

.swiper-ebooks {
  margin-bottom: 40px;
}
.swiper-ebooks .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(80, 80, 120, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  max-width: 370px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}
.ebook-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(80, 80, 120, 0.18);
}
.ebook-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: filter 0.3s;
}
.ebook-card .badge-nuevo {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #6a82fb;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(106, 130, 251, 0.12);
  letter-spacing: 1px;
}

.ebook-card-body {
  padding: 24px 20px 20px 20px;
  text-align: center;
  min-height: 300px;
}
.ebook-card-body .ebook-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2A3551;
  margin-bottom: 10px;
  height: 52px;
}
.ebook-card-body .ebook-desc {
  font-size: 1rem;
  color: #555;
  min-height: 140px;
  margin-bottom: 18px;
}
.ebook-card-body .ebook-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fc5c7d;
  margin-bottom: 10px;
  display: block;
}
.ebook-card-body .btn-comprar {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(252, 92, 125, 0.08);
  display: inline-block;
}
.ebook-card-body .btn-comprar:hover {
  background: linear-gradient(90deg, #fc5c7d 0%, #6a82fb 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(252, 92, 125, 0.18);
}

.single-ebook .btn-comprar {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(252, 92, 125, 0.08);
  display: inline-block;
}

@media (max-width: 767px) {
  .header-ebooks h1 {
    font-size: 2rem;
  }
  .ebook-card {
    max-width: 95vw;
  }
  .ebook-card img {
    height: 180px;
  }
}
/* Asegura que el swiper ocupe todo el ancho disponible */
.valores-swiper {
  width: 100%;
  overflow: hidden;
}

/* Estilo para los botones de navegación deshabilitados */
.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/* Contenedor de slides */
/* Estilo responsivo para móviles */
@media (max-width: 567px) {
  .valores-swiper .swiper-slide {
    padding: 0 15px; /* Espacio a los lados */
    display: flex !important;
    justify-content: center !important;
  }
}
.page-template .icon-img.large {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
@media (max-width: 1400px) {
  .page-template .icon-img.large {
    width: 180px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .page-template .icon-img.large {
    width: 150px;
    height: 100px;
  }
}

.card-img-bg {
  height: 220px;
  background: #f5f5f5;
}

.card-ebook {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.img-content-equal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-top {
  background: #fff;
  padding: 32px 0;
  position: relative;
  padding-top: 80%;
}

.card-img-custom {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
}

.card-content {
  background: transparent;
}

@media (max-width: 767px) {
  .card-ebook {
    min-height: 0;
  }
}
.ebook-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 2em;
  border: 3px solid #fff;
}

.ebook-badge.premium {
  color: #FFD700;
  background: #fffbe6;
  border-color: #FFD700;
}

.ebook-badge.gratuito {
  color: #007bff;
  background: #e6f0ff;
  border-color: #007bff;
}

@media (min-width: 1300px) {
  .home .navbar-toggler {
    display: none !important;
  }
  .home .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
}

/* 
  Mejoras de paddings y tamaños mínimos de títulos en secciones para dispositivos móviles.
  - De 1200px hacia abajo: padding top y bottom de 40px en secciones principales
  - En medidas más chicas (767px para abajo): padding top y bottom de 30px
  - Los títulos de sección no deben ser menores a 25px
*/
/* 2. XL: de 1919px a 1400px */
@media (max-width: 1919px) and (min-width: 1400px) {
  .slide-title {
    font-size: 60px;
  }
  .section-title, .section-cards .section-title {
    font-size: 54px;
  }
  .section-blue .title {
    font-size: 54px;
  }
  .card i, .team-card .team-linkedin {
    font-size: 54px;
  }
  .card .fa-star {
    font-size: 22px;
  }
  .card .card-title {
    font-size: 18px;
  }
  .card .card-description {
    font-size: 17px;
  }
  .tab-title {
    font-size: 27px;
  }
  .review-heading, .review-title {
    font-size: 28px;
  }
  .team-card .team-title {
    font-size: 20px;
  }
  .team-card .team-position {
    font-size: 17px;
  }
  .team-card .team-email {
    font-size: 15px;
  }
  .page-template p, #myTabContent p {
    font-size: 20px;
  }
  .card-deck .card {
    min-height: 400px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 440px;
  }
  .icon-img {
    width: 130px;
    height: 130px;
  }
  .header-ebooks h1 {
    font-size: 54px;
  }
  .section-team .section-title {
    font-size: 46px;
  }
  .section-team .section-top-title {
    font-size: 25px;
  }
  .section-team .description {
    font-size: 22px;
  }
}
/* 3. LG+: de 1399px a 1200px (más notorio) */
@media (max-width: 1399.98px) and (min-width: 1200px) {
  .slide-title {
    font-size: 52px;
  }
  .section-title, .section-cards .section-title {
    font-size: 46px;
  }
  .section-blue .title {
    font-size: 46px;
  }
  .card i, .team-card .team-linkedin {
    font-size: 46px;
  }
  .card .fa-star {
    font-size: 20px;
  }
  .card .card-title {
    font-size: 16px;
  }
  .card .card-description {
    font-size: 15px;
  }
  .tab-title {
    font-size: 23px;
  }
  .review-heading, .review-title {
    font-size: 24px;
  }
  .team-card .team-title {
    font-size: 17px;
  }
  .team-card .team-position {
    font-size: 15px;
  }
  .team-card .team-email {
    font-size: 13px;
  }
  .page-template p, #myTabContent p {
    font-size: 17px;
  }
  .card-deck .card {
    min-height: 340px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 380px;
  }
  .icon-img {
    width: 120px;
    height: 120px;
  }
  .header-ebooks h1 {
    font-size: 46px;
  }
  .section-team .section-title {
    font-size: 38px;
  }
  .section-team .section-top-title {
    font-size: 15px;
  }
  .section-team .description {
    font-size: 18px;
  }
}
/* 4. LG: de 1199px a 992px (compacto pero aún “desktop”) */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .slide-title {
    font-size: 40px;
  }
  .section-title, .section-cards .section-title {
    font-size: 25px !important;
  }
  .section-blue .title {
    font-size: 25px !important;
  }
  .card i, .team-card .team-linkedin {
    font-size: 36px;
  }
  .card .fa-star {
    font-size: 16px;
  }
  .card .card-title {
    font-size: 15px;
  }
  .card .card-description {
    font-size: 18px;
  }
  .tab-title {
    font-size: 17px;
  }
  .review-heading, .review-title {
    font-size: 17px;
  }
  .team-card .team-title {
    font-size: 15px;
  }
  .team-card .team-position {
    font-size: 18px;
  }
  .team-card .team-email {
    font-size: 18px;
  }
  .page-template p, #myTabContent p {
    font-size: 18px;
  }
  .card-deck .card {
    min-height: 180px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 260px;
  }
  .icon-img {
    width: 80px;
    height: 80px;
  }
  .navbar {
    height: auto;
  }
  .slider-container {
    height: 600px;
  }
  .section-blue .tab-pane {
    min-height: 300px;
  }
  .section-team .section-title {
    font-size: 25px !important;
  }
  .section-team .section-top-title {
    font-size: 18px;
  }
  .section-team .description {
    font-size: 18px;
  }
  .section-cards,
  .section-team,
  .section-blue,
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* 5. MD: de 991px a 768px (tablet vertical) */
@media (max-width: 991.98px) and (min-width: 768px) {
  .slide-title {
    font-size: 28px;
  }
  .section-title, .section-cards .section-title {
    font-size: 25px !important;
  }
  .section-blue .title {
    font-size: 25px !important;
  }
  .card i, .team-card .team-linkedin {
    font-size: 18px;
  }
  .card .fa-star {
    font-size: 18px;
  }
  .card .card-title {
    font-size: 18px;
  }
  .card .card-description {
    font-size: 18px;
  }
  .tab-title {
    font-size: 18px;
  }
  .review-heading, .review-title {
    font-size: 18px;
  }
  .team-card .team-title {
    font-size: 18px;
  }
  .team-card .team-position {
    font-size: 18px;
  }
  .team-card .team-email {
    font-size: 18px;
  }
  .page-template p, #myTabContent p {
    font-size: 18px;
  }
  .card-deck .card {
    min-height: 80px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 120px;
  }
  .icon-img {
    width: 38px;
    height: 38px;
  }
  .navbar {
    height: auto;
  }
  .slider-container {
    height: 600px;
  }
  .section-blue .tab-pane {
    min-height: 100px;
  }
  .section-cards {
    padding: 40px 0;
  }
  .section-team {
    padding: 40px 0;
  }
  .section-blue {
    padding: 40px 0;
  }
  .footer {
    padding: 40px 0;
  }
  .testimonial-card {
    min-height: 80px;
    padding: 5px 2px;
  }
  .nav-link {
    font-size: 18px;
  }
  .section-team .section-title {
    font-size: 25px !important;
  }
  .section-team .section-top-title {
    font-size: 18px;
  }
  .section-team .description {
    font-size: 18px;
  }
}
/* 6. SM: de 767px a 576px (móvil grande) */
@media (max-width: 767.98px) and (min-width: 576px) {
  .slide-title {
    font-size: 16px;
  }
  .section-title, .section-cards .section-title {
    font-size: 25px !important;
  }
  .section-blue .title {
    font-size: 25px !important;
  }
  .card i, .team-card .team-linkedin {
    font-size: 16px;
  }
  .card .fa-star {
    font-size: 18px;
  }
  .card .card-title {
    font-size: 18px;
  }
  .card .card-description {
    font-size: 18px;
  }
  .tab-title {
    font-size: 18px;
  }
  .review-heading, .review-title {
    font-size: 18px;
  }
  .team-card .team-title {
    font-size: 18px;
  }
  .team-card .team-position {
    font-size: 18px;
  }
  .team-card .team-email {
    font-size: 18px;
  }
  .page-template p, #myTabContent p {
    font-size: 18px;
  }
  .card-deck .card {
    min-height: 42px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 60px;
  }
  .icon-img {
    width: 18px;
    height: 18px;
  }
  .navbar {
    height: auto;
  }
  .slider-container {
    height: 500px;
  }
  .section-blue .tab-pane {
    min-height: 40px;
  }
  .section-cards {
    padding: 30px 0;
  }
  .section-team {
    padding: 30px 0;
  }
  .section-blue {
    padding: 30px 0;
  }
  .footer {
    padding: 30px 0;
  }
  .nav-link {
    font-size: 18px;
  }
  .section-team .section-title {
    font-size: 25px !important;
  }
  .section-team .section-top-title {
    font-size: 18px;
  }
  .section-team .description {
    font-size: 18px;
  }
}
/* 7. XS: <576px (móvil pequeño) */
@media (max-width: 575.98px) {
  .slide-title {
    font-size: 18px;
  }
  .section-title, .section-cards .section-title {
    font-size: 25px !important;
  }
  .section-blue .title {
    font-size: 25px !important;
  }
  .card i, .team-card .team-linkedin {
    font-size: 18px;
  }
  .card .fa-star {
    font-size: 18px;
  }
  .card .card-title {
    font-size: 18px;
  }
  .card .card-description {
    font-size: 18px;
  }
  .tab-title {
    font-size: 18px;
  }
  .review-heading, .review-title {
    font-size: 18px;
  }
  .team-card .team-title {
    font-size: 18px;
  }
  .team-card .team-position {
    font-size: 18px;
  }
  .team-card .team-email {
    font-size: 18px;
  }
  .page-template p, #myTabContent p {
    font-size: 18px;
  }
  .card-deck .card {
    min-height: 18px;
  }
  .card-ebook, .single-ebook .card-ebook {
    height: 18px;
  }
  .icon-img {
    width: 14px;
    height: 14px;
  }
  .navbar {
    height: auto;
  }
  .slider-container {
    height: 500px;
  }
  .section-blue .tab-pane {
    min-height: 16px;
  }
  .section-cards {
    padding: 30px 0;
  }
  .section-team {
    padding: 30px 0;
  }
  .section-blue {
    padding: 30px 0;
  }
  .footer {
    padding: 30px 0;
  }
  .nav-link {
    font-size: 18px;
  }
  .section-team .section-title {
    font-size: 25px !important;
  }
  .section-team .section-top-title {
    font-size: 18px;
  }
  .section-team .description {
    font-size: 18px;
  }
}
.nav-item {
  margin: 0 10px;
}

@media (max-width: 1400px) {
  .swiper-backface-hidden .swiper-slide {
    padding: 26px !important;
  }
}
@media (max-width: 1400px) {
  .title-ebooks-page {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.ebooks-swiper-gratis, .ebooks-swiper-premium {
  padding: 8px !important;
}

.single-ebook .card-ebook {
  position: relative;
  max-width: 420px;
  margin: 0 auto 2rem auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(80, 80, 120, 0.12);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.single-ebook .card-ebook:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(80, 80, 120, 0.18);
}
.single-ebook .card-ebook img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  background: #f7f8fa;
}
.single-ebook .card-ebook h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2A3551;
  margin-bottom: 0.5rem;
}
.single-ebook .card-ebook .text-image-content {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
}
.single-ebook .card-ebook .row.g-2 {
  margin-bottom: 0.5rem;
}
.single-ebook .card-ebook .bg-light-custom {
  background: #f7f8fa !important;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 1.2rem 1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}
.single-ebook .card-ebook .fw-bold {
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.single-ebook .card-ebook .text-decoration-line-through {
  color: #b0b0b0 !important;
  font-size: 1.1rem;
  margin-right: 0.3rem;
}
.single-ebook .card-ebook .fs-4 {
  font-size: 1.5rem !important;
  font-weight: 700;
}
.single-ebook .card-ebook .btn-primary {
  background: linear-gradient(90deg, #36A2DA 0%, #ABB3F4 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  margin-top: 0.7rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
}
.single-ebook .card-ebook .btn-primary:hover {
  background: linear-gradient(90deg, #ABB3F4 0%, #36A2DA 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.18);
}
.single-ebook .card-ebook .badge {
  font-size: 1rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  letter-spacing: 0.04em;
  font-weight: 700;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .single-ebook .card-ebook {
    max-width: 95vw;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .single-ebook .card-ebook img {
    max-height: 120px;
  }
  .single-ebook .card-ebook h3 {
    font-size: 1.2rem;
  }
  .single-ebook .card-ebook .fs-4 {
    font-size: 1.1rem !important;
  }
  .single-ebook .card-ebook .badge {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .single-ebook .card-ebook {
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  .single-ebook .card-ebook .bg-light-custom {
    padding: 0.7rem 0.5rem;
    min-height: 90px;
  }
  .single-ebook .card-ebook .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
  }
}

.page-template-template-postulaciones .card-img-top {
  padding-top: 50%;
}
.page-template-template-postulaciones .card-img-top .card-img-custom {
  object-fit: contain;
}

/* Uniforme con tienda */
#contact-form.card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 18px rgba(28, 182, 220, 0.1);
  border: none;
}

#contact-form .form-label {
  color: #1cb6dc;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#contact-form .form-control {
  border: 1.5px solid #e3e6f0;
  font-size: 1.1rem;
  transition: border-color 0.2s;
}

#contact-form .form-control:focus {
  border-color: #1cb6dc;
  box-shadow: 0 0 0 0.15rem rgba(28, 182, 220, 0.15);
}

.btn-comprar {
  background: linear-gradient(90deg, #6a82fb 0%, #1cb6dc 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(28, 182, 220, 0.08);
  display: inline-block;
}

.btn-comprar:hover, .btn-comprar:focus {
  background: linear-gradient(90deg, #1cb6dc 0%, #6a82fb 100%);
  color: #fff;
}

/* Uniforme con tienda y adaptado a Contact Form 7 */
.wpcf7-form {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 18px rgba(28, 182, 220, 0.1);
  border: none;
  padding: 2rem 2rem 1.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7-form label {
  color: #1cb6dc;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form textarea {
  border: 1.5px solid #e3e6f0;
  font-size: 1.1rem;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.2rem;
  width: 100%;
  transition: border-color 0.2s;
  background: #f9fafd;
  resize: none;
}

.wpcf7-form textarea {
  border-radius: 1rem;
  min-height: 120px;
}

.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form textarea:focus {
  border-color: #1cb6dc;
  box-shadow: 0 0 0 0.15rem rgba(28, 182, 220, 0.15);
  outline: none;
}

.wpcf7-submit,
.wpcf7-form input[type=submit] {
  background: linear-gradient(90deg, #6a82fb 0%, #1cb6dc 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(28, 182, 220, 0.08);
  display: inline-block;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.wpcf7-submit:hover, .wpcf7-submit:focus,
.wpcf7-form input[type=submit]:hover, .wpcf7-form input[type=submit]:focus {
  background: linear-gradient(90deg, #1cb6dc 0%, #6a82fb 100%);
  color: #fff;
}

.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1rem;
}

.desempeno-slider .card-ebook {
  height: 350px;
}

.busqueda-section .rounded-3 {
  height: 400px;
}

@media (max-width: 567px) {
  .swiper-backface-hidden .swiper-slide {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
}
@media (max-width: 767px) {
  .section-reviews h2, .page-template-template-ebooks h2 {
    font-size: 25px !important;
  }
}

@media (max-width: 767px) {
  .swiper-backface-hidden .swiper-slide {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .slider-container .swiper-backface-hidden .swiper-slide {
    margin-top: 0px !important;
  }
}
@media (max-width: 575.98px) {
  .single-ebook .card-ebook {
    margin-top: 30px !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .page-template-template-postulaciones .swiper-backface-hidden .swiper-slide, .page-template-template-ebooks .swiper-backface-hidden .swiper-slide {
    margin-top: 0;
    padding-top: 0px !important;
  }
}

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