/* ============================================
   Variables y base
   ============================================ */
:root {
  --azul-cielo: #0798BC;
  --negro-tenue: #333333;
  --azul-profundo: #143B67;
  --gris: #EAEAEA;
  --sombra-tenue: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--negro-tenue);
}

/* Espaciado entre secciones (reutilizable) */
.section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 991.98px) {
  .section-spacing {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* ============================================
   Navbar superior (azul cielo) - NO sticky
   ============================================ */
.navbar-top {
  background-color: var(--azul-cielo);
  padding: 0.5rem 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.navbar-top a {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-link-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
}

.navbar-top .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.navbar-top .dropdown-toggle::after {
  display: none;
}

.navbar-top .flag-icon {
  width: 20px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .navbar-top {
    font-size: 12px;
    padding: 0.4rem 0;
  }

  .navbar-top .nav-link-top span {
    display: inline;
  }

  .navbar-top .d-flex.flex-wrap {
    justify-content: center;
    text-align: center;
  }

  .navbar-top .nav-link-top {
    white-space: normal;
  }
}

/* ============================================
   Navbar principal (blanco) - sticky al scroll
   ============================================ */
.navbar-main {
  background-color: #fff !important;
  box-shadow: var(--sombra-tenue);
  padding: 0.5rem 0;
}

.navbar-main .navbar-brand {
  padding: 0;
}

.navbar-main .navbar-brand img {
  height: 60px;
  width: auto;
  max-height: 60px;
}

@media (max-width: 991.98px) {
  .navbar-main .navbar-brand img {
    height: 50px;
  }
}

.navbar-main .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: var(--negro-tenue);
  padding: 0.5rem 1rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 50px;
  transition: color 0.2s, background-color 0.2s;
}

.navbar-main .navbar-nav .nav-link:hover,
.navbar-main .navbar-nav .nav-link.active {
  color: #fff;
  background-color: var(--azul-cielo);
}

/* Bootstrap 4 toggle en móvil */
.navbar-main .navbar-toggler {
  border-color: var(--negro-tenue);
  padding: 0.35rem 0.65rem;
}

.navbar-main .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23333333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-main .navbar-nav .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 0.6rem 1rem;
    border-radius: 0;
  }

  .navbar-main .navbar-collapse {
    padding-top: 0.5rem;
  }
   /* Footer móvil */
   .footer-section {
    padding: 40px 20px;
    text-align: center;
}

.footer-section .container > .row > div {
    text-align: center;
    margin-bottom: 40px;
}

.footer-section .container > .row > div:last-child {
    margin-bottom: 0;
}

.footer-logo {
    margin-left: auto;
    margin-right: auto;
}

.footer-title {
    font-size: 16px;
    text-align: center;
}

.footer-text {
    font-size: 11px;
    text-align: center;
}

.footer-contact {
    text-align: center;
}

.footer-social {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
}

.footer-social-icon i {
    font-size: 16px;
}

.footer-row-2 {
    margin-top: 40px;
    padding-top: 30px;
}

.footer-sitemap {
    margin-bottom: 30px;
}

.footer-sitemap-links {
    font-size: 10px;
    line-height: 1.6;
}

.footer-more-info {
    margin-bottom: 30px;
}

.footer-links-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    justify-items: center !important;
    text-align: center !important;
}

.footer-link-column {
    width: 100%;
}

.footer-links-group {
    align-items: center;
}

.footer-link-title {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

.footer-link {
    font-size: 11px;
    margin-bottom: 6px;
}

.footer-border-white {
    margin: 25px 0;
}

.footer-copyright {
    padding-top: 15px;
}

.footer-copyright-text {
    font-size: 12px;
}
}

/* Dropdown de idioma en barra azul */
.navbar-top .dropdown-menu {
  border-radius: 8px;
  box-shadow: var(--sombra-tenue);
  border: none;
  padding: 0.5rem 0;
  min-width: 120px;
}

.navbar-top .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--negro-tenue);
}

.navbar-top .dropdown-item:hover {
  background-color: var(--gris);
}

.navbar-top .dropdown-item .flag-icon {
  width: 20px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   Hero (banner con imagen de fondo)
   ============================================ */
.hero-banner {
  background-image: url("img/bg-hero-dr-esteban-castro.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.hero-banner .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-banner .row {
  flex: 1;
}

@media (max-width: 991.98px) {
  .hero-banner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }
}

.title-hero {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .title-hero {
    font-size: 2rem;
  }
}

.hero-text {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Lista con checkmarks (reutilizable) */
.list-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.list-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.list-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--azul-cielo);
  font-size: 1rem;
}

/* Botones reutilizables (sin hero en el nombre) */
.btn-filled,
.btn-outline-white,
.btn-outline {
  font-size: 17px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-filled:hover,
.btn-outline-white:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-tenue);
}

.btn-filled {
  background-color: var(--azul-cielo);
  color: #fff;
  border: none;
}

.btn-filled:hover {
  background-color: var(--azul-cielo);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-outline-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--azul-cielo);
  border: 1px solid var(--azul-cielo);
}

.btn-outline:hover {
  background: #fff;
  color: var(--azul-cielo);
  border-color: var(--azul-cielo);
}

/* Gap para flex (Bootstrap 4 no tiene gap por defecto) */
.gap-2 > * + * {
  margin-left: 0.5rem;
}

@media (max-width: 575.98px) {
  .gap-2 {
    flex-direction: column;
  }
  .gap-2 > * + * {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ============================================
   Títulos y texto de sección (reutilizables)
   ============================================ */
.title-section {
  font-size: 40px;
  font-weight: 600;
  color: var(--negro-tenue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .title-section {
    font-size: 1.75rem;
  }
}

.text-section {
  font-size: 15px;
  font-weight: 500;
  color: var(--negro-tenue);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Lista con palomita (reutilizable, fondo claro) */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--negro-tenue);
  line-height: 1.5;
}

.list-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--azul-cielo);
  font-size: 0.9rem;
}

.list-check-white li {
  color: #ffffff;
}

.list-check-white li::before {
  color: #ffffff;
}

/* Tarjetas de características (reutilizable) */
.card-feature {
  background: #fff;
  box-shadow: var(--sombra-tenue);
  border-radius: 10px;
  padding: 1.25rem;
  height: 100%;
}

.card-feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
  justify-content: center;
  display: flex;
  margin: auto;
  padding-bottom: 10px;
}

.card-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--negro-tenue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-feature-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--negro-tenue);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Sección con fondo azul cielo (título y texto blancos centrados)
   ============================================ */
.section-bg-accent {
  background-color: var(--azul-cielo);
}

.section-bg-accent .title-section {
  color: #fff;
  text-align: center;
}

.section-bg-accent .text-section {
  color: #fff;
  text-align: center;
  font-weight: 400;
}

/* Sección con fondo azul profundo (título y texto blancos centrados) */
.section-bg-deep {
  background-color: var(--azul-profundo);
}

.section-bg-deep .title-section {
  color: #fff;
  text-align: center;
}

.section-bg-deep .text-section {
  color: #fff;
  text-align: center;
  font-weight: 400;
}

.section-bg-deep .btn-filled {
  margin-top: 0.5rem;
}

/* Tarjeta con icono arriba centrado (reutilizable) */
.card-icon-top {
  background: #fff;
  box-shadow: var(--sombra-tenue);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  height: 100%;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-icon-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
}

.card-icon-top-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.card-icon-top-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--azul-profundo);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-icon-top-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--negro-tenue);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Accordion (botones + panel de contenido)
   ============================================ */
.accordion-triggers {
  gap: 0.5rem;
  margin-bottom: 0;
  justify-content: center;
}

.accordion-triggers .accordion-trigger + .accordion-trigger {
  margin-left: 0.5rem;
}

@media (max-width: 767.98px) {
  .accordion-triggers {
    flex-direction: column;
  }
  .accordion-triggers .accordion-trigger + .accordion-trigger {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.accordion-trigger {
  background: #fff;
  box-shadow: var(--sombra-tenue);
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--negro-tenue);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.accordion-trigger:hover,
.accordion-trigger.active {
  background-color: var(--azul-cielo);
  color: #fff;
}

.accordion-panel {
  background: #fff;
  box-shadow: var(--sombra-tenue);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 0;
}

.accordion-panel-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.accordion-panel .col-lg-6:first-child {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-panel-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--negro-tenue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .accordion-panel-title {
    font-size: 1.5rem;
  }
}

.accordion-panel-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--negro-tenue);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ============================================
   Sección Testimonios (carrusel)
   ============================================ */
.testimonials-carousel {
  margin-top: 2rem;
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
  display: none;
}

.carousel-indicators-circles {
  position: static;
  margin-top: 1.5rem;
  margin-bottom: 0;
  justify-content: center;
}

.carousel-indicators-circles li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 0.25rem;
  text-indent: -9999px;
  opacity: 1;
}

.carousel-indicators-circles li.active {
  background-color: #fff;
}

.card-testimonial {
  background: #fff;
  border-radius: 5px;
  box-shadow: var(--sombra-tenue);
  padding: 1.5rem;
  height: 100%;
}

.card-testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--azul-profundo);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-testimonial-text {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: var(--negro-tenue);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Sección Preguntas frecuentes (FAQ)
   ============================================ */
.faq-section-img {
  box-shadow: var(--sombra-tenue);
}

#accordionFaq .faq-card {
  background: #fff;
  box-shadow: var(--sombra-tenue);
  border-radius: 5px;
  border: none;
  margin-bottom: 0.75rem;
}

#accordionFaq .faq-card:last-child {
  margin-bottom: 0;
}

.faq-card-header {
  background: transparent;
  border: none;
  padding: 0;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--negro-tenue);
  padding: 1rem 1.25rem;
  white-space: normal;
}

.faq-btn:hover,
.faq-btn:focus {
  text-decoration: none;
  color: var(--negro-tenue);
}

.faq-question-text {
  flex: 1;
  margin-right: 0.5rem;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-icon-minus {
  display: none;
}

.faq-btn[aria-expanded="true"] .faq-icon-plus {
  display: none;
}

.faq-btn[aria-expanded="true"] .faq-icon-minus {
  display: inline;
}

.faq-card .collapse.show .faq-card-body {
  border-top: 1px solid var(--azul-cielo);
}

.faq-card-body {
  font-size: 12px;
  font-weight: 500;
  color: var(--negro-tenue);
  padding: 1rem 1.25rem;
  line-height: 1.5;
}

/* ============================================
   Sección Ubicación / Mapa
   ============================================ */
.map-location {
  font-size: 16px;
  font-weight: 600;
  color: var(--negro-tenue);
  margin-bottom: 0.25rem;
}

.map-phone {
  font-size: 15px;
  font-weight: 500;
  color: var(--negro-tenue);
  margin-bottom: 0;
}

.map-iframe-wrapper {
  width: 100%;
  margin-top: 1rem;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}
 /* Botón flotante de WhatsApp */
 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none !important;
  color: white !important;
  font-size: 32px;
  border: none;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus,
.whatsapp-btn:visited,
.whatsapp-btn:active {
  background-color: #20BA5A;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
  text-decoration: none !important;
  color: white !important;
  outline: none;
}

.whatsapp-btn i {
  z-index: 2;
}

.whatsapp-tooltip {
  position: absolute;
  left: 75px;
  background-color: white;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: normal;
  text-align: left;
  min-width: 140px;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
}
/* Footer Section */
.footer-section {
  background-color: var(--azul-cielo);
  padding: 60px 0;
  margin-top: 0;
  position: relative;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: white;
  margin-bottom: 15px;
}

.footer-title-social {
  margin-top: 30px;
}

.footer-border {
  height: 2px;
  background-color: white;
  margin-bottom: 20px;
  width: 100%;
}

.footer-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: white;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-text strong {
  font-weight: 600;
}

.footer-disclaimer {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-contact {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon i {
  font-size: 18px;
}

.footer-social-icon:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Segunda Fila */
.footer-row-2 {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title-center {
  text-align: center;
}

.footer-border-center {
  height: 2px;
  background-color: white;
  margin: 15px auto 25px auto;
  width: 100%;
  max-width: 100%;
}

.footer-sitemap {
  margin-bottom: 20px;
}

.footer-sitemap-links {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: white;
  text-align: center;
  margin: 0;
  line-height: 1.8;
}

.footer-sitemap-links a {
  color: white;
  text-decoration: none;
  transition: none;
}

.footer-sitemap-links a:hover,
.footer-sitemap-links a:focus {
  color: white;
  text-decoration: none;
  background-color: transparent;
}

.footer-more-info {
  margin-bottom: 40px;
}

.footer-link-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: white;
  margin-bottom: 15px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4rem;
  margin: 0;
}

.footer-link-column {
  min-width: 0;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
  line-height: 1.5;
}

.footer-link:last-child {
  margin-bottom: 0;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
  opacity: 0.8;
}

.footer-border-white {
  height: 1px;
  background-color: white;
  width: 100%;
  margin: 30px 0;
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
}

.footer-copyright-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: white;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-copyright-text:last-child {
  margin-bottom: 0;
}

.footer-copyright-text a {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-copyright-text a:hover,
.footer-copyright-text a:focus {
  color: #ffffff !important;
  text-decoration: none;
}
/* Reviews Section */
.reviews-container {
  padding: 100px 0;
}

.review-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--sombra-tenue);
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-card-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #46494E;
  margin-bottom: 15px;
}

.review-card-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.review-card-rating {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 23px;
  color: #46494E;
  margin-bottom: 10px;
}

.review-card-percentage {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #46494E;
  margin-bottom: 10px;
}

.review-card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #46494E;
  margin-bottom: 15px;
  line-height: 1.4;
}

.review-card-opinions {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #46494E;
  margin-bottom: 15px;
}

.review-stars {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.review-stars i {
  font-size: 16px;
}

.review-stars-yellow i {
  color: #FBEE01;
}

.review-stars-green i {
  color: #00C3A5;
}
.review-text-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  color: var(--azul-profundo);
  text-align: center;
  margin: 0;
}
/* Video Carousel Section */
.video-carousel-section .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.video-carousel-section .section-text {
  text-align: center;
  margin-bottom: 0;
}

.video-carousel-header {
  margin-bottom: 40px;
}

.video-carousel-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #272727;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-marquee-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.video-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.video-marquee-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.video-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: var(--sombra-tenue);
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .video-card {
      flex: 0 0 100%;
  }
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.video-frame {
  width: 100%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-frame.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%; /* Mantener aspect ratio */
  overflow: hidden;
}

.video-frame.embed-responsive::before {
  display: none; /* No usar el pseudo-elemento de Bootstrap */
}

.video-frame.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.video-frame iframe,
.video-frame embed,
.video-frame object,
.video-frame video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame .embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video Preview Styles */
.video-preview {
  cursor: pointer;
  position: relative;
  background-color: #f0f0f0; /* Color de fondo temporal mientras carga la imagen */
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  z-index: 1;
}

.video-preview:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
  background-color: var(--azul-cielo);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.video-play-button i {
  color: var(--azul-profundo);
  font-size: 24px;
  margin-left: 4px; /* Ajuste visual para centrar el icono */
  transition: color 0.3s ease;
}

.video-play-button:hover i {
  color: white;
}

.video-preview.playing .video-thumbnail,
.video-preview.playing .video-play-button {
  display: none;
}

.video-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--azul-profundo);
  padding: 20px;
  margin: 0;
  line-height: 1.4;
}

.video-marquee-control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0.5rem;
  z-index: 10;
}

.video-marquee-control:hover {
  background-color: transparent;
  transform: scale(1.2);
}

.video-marquee-control:active {
  transform: scale(0.9);
}

.video-marquee-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.video-marquee-control i {
  pointer-events: none;
  color: var(--azul-cielo);
  font-size: 32px;
  transition: color 0.3s ease;
}

.video-marquee-control:hover i {
  color: var(--azul-cielo);
}