
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.accordion {
  --bs-accordion-btn-bg: rgba(189,199,212,0.2);
  --bs-accordion-active-bg: rgba(69,182,96,1);
  --bs-accordion-active-color: white;
  --bs-accordion-btn-focus-box-shadow: none;
}

.swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background-color: rgba(69,182,96,1);
  opacity: 0.4; /* bullets inactivos */
}

.swiper-pagination-bullet-active {
  background-color: rgba(69,182,96,1);
  opacity: 1;
}


.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 50%;
}

.vemr {
  color: rgba(69,182,96,1);
  font-size: 1.75rem;   /* tamaño típico h3 Bootstrap */
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

.btn-get-started {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px; /* ← menos redondeado (antes 50px) */
  color: #fff;
  background: rgba(69,182,96,1);
  border: 2px solid rgba(69,182,96,1);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.btn-get-started:hover {
  background: #fff;
  color: rgba(69,182,96,1);
  border-color: rgba(69,182,96,1);
}

.fx-image {
  border-radius: 14px;                 /* sutil */
  transition: all 0.45s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.fx-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(69,182,96,0.35);
}

.counter {
  font-size: clamp(4rem, 10vw, 8rem); /* responsive, enorme */
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: transform 0.6s ease-out;
}

.vemr.counter {
  color: rgba(69,182,96,1);
  text-shadow: 0 10px 30px rgba(69,182,96,0.25);
}

.flip-counter {
  font-weight: 800;
  letter-spacing: 0.12em;
  display: inline-block;
  perspective: 800px;
}

[data-aos="zoom-in"].aos-animate.counter {
  transform: scale(1.05);
}

.flip-counter span {
  display: inline-block;
  animation: flipIn 0.8s ease forwards;
}

@keyframes flipIn {
  from {
    transform: rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: rotateX(0);
    opacity: 1;
  }
}

blockquote ul {
  padding-left: 1.2rem;   /* alineación limpia a la izquierda */
  margin: 0;
}

blockquote ul li {
  font-size: 0.85rem;     /* letra más pequeña */
  text-align: left;
  line-height: 1.4;
}


/* ================================
   Tooltip base (override Bootstrap)
================================ */

/* Fondo y texto */
.tooltip.tooltip-joint-venture .tooltip-inner,
.tooltip.tooltip-outsourcing .tooltip-inner,
.tooltip.tooltip-in-house .tooltip-inner {
  background-color: rgba(97, 100, 97,1);
  color: #ffffff;
  text-align: left;
  max-width: 320px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Flecha */
.tooltip.tooltip-joint-venture .tooltip-arrow::before,
.tooltip.tooltip-outsourcing .tooltip-arrow::before,
.tooltip.tooltip-in-house .tooltip-arrow::before {
  border-top-color: #f9fafb;
}

/* ================================
   Título
================================ */

.tooltip-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

/* Colores por modalidad */
.tooltip-joint-venture .tooltip-title {
  color: #ebe125;
}

.tooltip-outsourcing .tooltip-title {
  color: #ebe125;
}

.tooltip-in-house .tooltip-title {
  color: #ebe125;
}

/* ================================
   Bloques de contenido
================================ */

.tooltip-section {
  margin-top: 6px;
  padding-left: 8px;
  border-left: 3px solid;
  font-size: 18px;
  line-height: 1.45;
}

/* Texto justificado */
.tooltip-section > *:not(.tooltip-label) {
  text-align: justify;
}

/* Etiquetas */
.tooltip-label {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ================================
   Colores por sección (línea + label)
================================ */

/* Contexto */
.tooltip-section:nth-of-type(1) {
  border-left-color: #2563eb;
}
.tooltip-section:nth-of-type(1) .tooltip-label {
  color: #2563eb;
}

/* Problemas */
.tooltip-section:nth-of-type(2) {
  border-left-color: #f31313;
}
.tooltip-section:nth-of-type(2) .tooltip-label {
  color: #f31313;
}

/* Problema clave */
.tooltip-section:nth-of-type(3) {
  border-left-color: #f59e0b;
}
.tooltip-section:nth-of-type(3) .tooltip-label {
  color: #f59e0b;
}

/* Solución */
.tooltip-section:nth-of-type(4) {
  border-left-color: #16a34a;
}
.tooltip-section:nth-of-type(4) .tooltip-label {
  color: #16a34a;
}


/* Compensación para header fijo */
#team,
#cap,
#exlab,
#tool {
  scroll-margin-top: 100px; /* header + un pequeño aire */
}


.scroll-link {
  display: inline-block;
  padding: .2rem .45rem;      /* área táctil */
  margin: .1rem 0;
  font-weight: 600;
  border-radius: .4rem;
  transition: background-color .2s ease, color .2s ease;
}

/* Hover / focus (desktop + teclado) */
.scroll-link:hover,
.scroll-link:focus {
  background-color: rgba(13,110,253,.12); /* azul bootstrap */
  text-decoration: none;
}

/* Ajuste específico móvil */
@media (max-width: 576px) {
  .scroll-link {
    font-size: 1.05rem;       /* ligeramente más grande */
    line-height: 1.6;
  }
}



/* ================================
   ACCORDION – SECCIÓN DICCIONARIO
   ================================ */

#faq .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: .5rem;
  overflow: hidden;
  margin-bottom: .75rem;
}

/* Header (botón cerrado) */
#faq .accordion-button {
  background-color: #16a34a;   /* fondo */
  color: #ffffff;              /* texto */
  font-weight: 600;
  box-shadow: none;
  padding: 1rem 1.25rem;
}

/* Flecha */
#faq .accordion-button::after {
  filter: invert(1);           /* flecha blanca */
}

/* Hover */
#faq .accordion-button:hover {
  background-color: #374151;
}

/* Header cuando está abierto */
#faq .accordion-button:not(.collapsed) {
  background-color: #0ae924;   /* azul Bootstrap */
  color: #ffffff;
}

/* Flecha cuando está abierto */
#faq .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

/* Cuerpo del accordion */
#faq .accordion-body {
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
  font-size: .95rem;
}

/* Quitar borde interno raro de Bootstrap */
#faq .accordion-collapse {
  border: none;
}

/* ================================
   AJUSTE MÓVIL
   ================================ */
@media (max-width: 576px) {
  #faq .accordion-button {
    font-size: 1rem;
    padding: .9rem 1rem;
  }
}
