/*————————————————————————————————————————————————————————————————————
  1) Variables globales y fuentes
————————————————————————————————————————————————————————————————————*/
:root {
  /* Alturas fijas para móvil */
  --top-bar-height: 40px;

  /* Colores */
  --color-primary: #e31c1c;
  --color-secondary: #4d4d4d;
  --color-tertiary: #b3b3b3;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #666666;
  --color-gray-dark: #6c6c6c;
  --color-text: #333333;

  /* Tipografías */
  --font-base: "MyriadPro Regular", sans-serif;
  --font-base-semibold: "MyriadPro semibold", sans-serif;
  --font-base-bold: "MyriadPro Bold", sans-serif;
  --font-heading: "Gobold thin", sans-serif;
  --font-menu: "Gobold thin", sans-serif;
  --top-bar-height: 40px;
  --header-height: 119px; /* <--- ajusta aquí */
}



@font-face {
  font-family: "Gobold thin";
  src: url("/font/gobold/Gobold Thin.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "MyriadPro Regular";
  src: url("/font/MyriadPro Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MyriadPro Bold";
  src: url("/font/Myriad Pro Bold.ttf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: "MyriadPro semibold";
  src: url("/font/MyriadPro semibold.ttf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro Bold Italic";
  src: url("/font/Myriad Pro Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

/*————————————————————————————————————————————————————————————————————
    2) Reset y estilos base
  ————————————————————————————————————————————————————————————————————*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
}

/*————————————————————————————————————————————————————————————————————
    3) Container centrado
  ————————————————————————————————————————————————————————————————————*/
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  
}

.container_contacto {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  
  
}

@media (max-width: 1024px) {
  .container_contacto {
    margin-top: 180px !important; /* prueba aumentar a 200px si igual tapa */
    padding-top: 0 !important;
  }
}



@media (max-width: 767px) {
  .container_contacto {
    margin-top: calc(var(--top-bar-height) + var(--header-height) + 24px);
    padding-top: 0 !important;
  }
}


.header-divider {
  display: none;
}

/*————————————————————————————————————————————————————————————————————
    4) Barra negra (solo móvil)
  ————————————————————————————————————————————————————————————————————*/
.top-bar {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--color-white);
  color: var(--color-gray-light);
  text-align: center;
  z-index: 1002;
  line-height: var(--top-bar-height);
  height: var(--top-bar-height);
  font-size: 14px;
}

/*————————————————————————————————————————————————————————————————————
    5) Header blanco
  ————————————————————————————————————————————————————————————————————*/
.header {
  background: var(--color-white);
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1001;
  padding: 1rem 1rem;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
}

/*————————————————————————————————————————————————————————————————————
    6) Logo encima del menú con espacio vertical
  ————————————————————————————————————————————————————————————————————*/
.columna1 {
  display: flex;
  flex-direction: column; /* logo arriba, menú abajo */
  align-items: flex-start;
  gap: 1.5rem; /* espacio vertical entre logo y menú */
}

.logo img {
  height: 50px;
  display: block;
}

/*————————————————————————————————————————————————————————————————————
    7) Menú estático
  ————————————————————————————————————————————————————————————————————*/
.menu ul {
  list-style: none;
  display: flex;
  gap: 2.5rem; /* espacio horizontal entre enlaces */
}

.menu a {
  font-family: var(--font-menu);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.menu a.active,
.menu a:hover {
  color: var(--color-primary);
  font-weight: bold;
}

/*————————————————————————————————————————————————————————————————————
  8) Horario interno (solo desktop)
————————————————————————————————————————————————————————————————————*/
@media (min-width: 901px) {
  .columna2 .horario {
    text-align: right;
    font-size: 0.95rem;
    color: var(--color-secondary);
  }

  .columna2 .horario__titulo {
    font-family: "Gobold thin", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    color: var(--color-secondary);
    margin-bottom: 1px;
  }

  .columna2 .horario p {
    margin: 0;
    line-height: 1.2;
  }

  .columna2 .horario__dias {
    font-family: "MyriadPro Regular", sans-serif;
    font-weight: 700; /* si 700 no aplica */
    font-style: italic;
    color: var(--color-secondary);
  }

  .columna2 .horario__horas {
    font-family: "MyriadPro Regular", sans-serif;
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 2px;
    font-size: 0.95em;
    color: var(--color-gray-light);
  }
}

/* — Ajustes Header Móvil/Tablet — */
@media (max-width: 1024px) {
  /* Asegura que el header ocupe siempre el 100% y no desborde */
  .header,
  .header-container {
    width: 100%;
    box-sizing: border-box;
  }

  /* Cambia la grid del header a una sola columna en tablet/móvil */
  .header-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: center;
  }

  /* Centra el logo + menú debajo del logo */
  .columna1 {
    align-items: center;
  }

  /* Apila los links del menú en varias líneas y cámbialos a vertical si hace falta */
  .menu ul {
    display: flex;
    flex-wrap: wrap !important;
    gap: 0.5rem 1.2rem;
    justify-content: center;
    padding: 0 0.2rem;
  }

  /* Reduce un poco el tamaño de letra para que quepa mejor */
  .menu a {
    white-space: nowrap;
    font-size: 0.88rem;
    padding: 0.3em 0.5em;
  }
}

/* ===============================
   Ajustes específicos MÓVIL
   =============================== */
@media (max-width: 900px) {
  /* 1) Mostrar siempre la barra negra */
  .top-bar {
    display: block; /* asegúrate de que está visible */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
  }

  /* 2) Ocultar el horario interno del header */
  .columna2 {
    display: none;
  }

  /* 3) Asegurar que el header no desborde */
  .header,
  .header-container {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-top: 10px;
    gap: 0 !important;
  }

  /* 4) Reforzar sticky sin scroll horizontal */
  .header {
    position: fixed;
    top: var(--top-bar-height); /* usa tu variable de altura */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    padding-bottom: 0 !important;
  }

  .slider-container {
    /* empuja el slider justo por debajo de top-bar + header */
    margin-top: calc(var(--top-bar-height) + var(--header-height));
  }

  .header-divider {
    display: block; /* lo hacemos visible */
    position: relative; /* para quedar debajo del header sticky */
    top: 0; /* ya que header está fixed */
    z-index: 999; /* justo por debajo del header (1000) */
    width: 100%;
    /* opcional: añade un pequeño margin-bottom para “respirar”*/
    margin-bottom: 0.9rem;
    margin: 0;
  }
  .header-divider img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; /* si quieres que ocupe todo el ancho recortando */
  }

  /* Y recuerda: si tu slider ya tiene margin-top para evitar taparlo,
       actualiza ese margin-top si tu divisor ocupa altura extra */
  .slider-container {
    margin-top: calc(
      var(--top-bar-height) /* 40px */ + var(--header-height) /* p. ej. 112px */ +
        /* altura del divisor */ Xpx
    );
  }
}

/* =========================================
   SLIDER
   ========================================= */
.slider-container {
  position: relative;
  width: 100vw; /* full width */
  max-width: 100%;
  overflow: hidden;
  z-index: 5;
}

/* En móvil, empuja el slider hacia abajo para no quedar bajo el header fijo */
@media (max-width: 767px) {
  .slider-container {
    margin-top: calc(var(--top-bar-height) + var(--header-height));
  }
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

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

.slider-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 10; /* sobre las imágenes */
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}

/* =========================================
   11) Cita con paréntesis (BEM + variables)
   ========================================= */
.cita {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px; /* o usa una variable si quieres */
  margin: 2rem auto; /* espacio arriba/abajo */
  padding: 1rem; /* algo de padding */
  text-align: center;
}

.cita__texto {
  margin: 0 1rem; /* separa del paréntesis */
  font-family: var(--font-base);
  font-size: 18px; /* ~20px */
  font-style: italic;
  color: var(--color-secondary);
}

.cita__parens {
  width: 46px;
  height: auto;
  object-fit: contain;
}

/* Si quisieras cambiar ligeramente el tamaño de apertura vs cierre */
.cita__parens--abre {
  margin-right: 0.5rem;
}
.cita__parens--cierra {
  margin-left: 0.5rem;
}

@media (max-width: 767px) {
  .cita__texto {
    font-family: "MyriadPro Regular", var(--font-base);
    font-weight: 600;
    font-style: italic;
    font-size: 14px; /* o el tamaño que prefieras */
    color: var(--color-secondary);
  }

  .cita__parens {
    width: 36px;
    height: auto;
    object-fit: contain;
    padding: 0;
  }
}

/* =========================================
   SECCIÓN DE ESTADÍSTICAS (STATS)
   ========================================= */
.stats {
  display: flex;
  position: relative;
  height: 150px;
}

.stats-color-block {
  height: 100%;
}

.rojo {
  background-color: var(--color-primary);
  width: 23%;
}

.rojo2 {
  background-color: var(--color-primary);
  width: 10%;
}

.gris-oscuro {
  background-color: var(--color-secondary);
  width: 35%;
}

.gris-claro {
  background-color: var(--color-tertiary);
  width: 25%;
}

.stats-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
}

.stats-content span {
  font-family: "Gobold thin", sans-serif;
  font-size: 60px;
  font-style: normal;
  letter-spacing: 5px;
  color: var(--color-white);
}

.stats-content span::before {
  content: "+";
  font-size: 80px;
  color: var(--color-primary);
}

.stats-content p:last-child {
  font-size: 20px;
  font-family: "Gobold thin", sans-serif;
  font-style: normal;
  color: var(--color-white);
  text-transform: uppercase;
  margin-top: 0px;
}

.stats-content span,
.stats-content p:last-child {
  line-height: 1;
}

/* =========================================
   12) Sección Acreditación (BEM + Variables)
   ========================================= */
.acreditacion {
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 4rem 1rem;
}

.acreditacion__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.acreditacion__header {
  text-align: center;
}

.acreditacion__title {
  font-family: var(--font-heading);
  font-size: 1.5rem; /* 24px */
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.acreditacion__logo img {
  max-width: 250px;
  height: auto;
}

.acreditacion__text {
  font-family: var(--font-base);
  font-size: 18px; /* 20px */
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  color: var(--color-secondary);
}

.acreditacion__text strong {
  font-weight: 800;
  color: #505050;
  font-family: "MyriadPro Bold";
}

.acreditacion__info {
  font-family: var(--font-base);
  font-size: 1rem; /* 16px */
  line-height: 1.5;
  text-align: center;
  color: var(--color-secondary);
}

.acreditacion__docs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.acreditacion__docs a {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s;
}

.acreditacion__docs a:hover {
  color: var(--color-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .acreditacion {
    padding: 2rem 1rem;
  }
  .acreditacion__title {
    font-size: 1.25rem; /* ajustar para móvil */
  }
  .acreditacion__text {
    font-size: 1rem;
  }
  .acreditacion__docs {
    gap: 1rem;
  }
}

/* =========================================
   13) Footer (BEM + Variables)
   ========================================= */
.footer {
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 4rem 1rem 1rem;
  font-family: var(--font-base);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Títulos de columna */
.footer__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Lista sin viñetas */
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Ítems con ícono */
.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__item--email {
  justify-content: center;
}

/* Íconos */
.footer__icon {
  width: 30px;
  height: auto;
}

/* Texto de dirección y contacto */
.footer__text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray-dark);
}

.footer__text span {
  font-size: 1rem;
  line-height: 1.5;
  color: #4d4d4d;
  font-style: italic;
  font-weight: 600;
}

/* Email */
.footer__email {
  font-family: "Myriad Pro Bold Italic", sans-serif;
  font-size: 1rem;
  color: var(--color-gray-dark);
  font-style: italic;
  text-decoration: none;
}
.footer__email:hover {
  color: var(--color-primary);
}

/* Logo footer */
.footer__logo {
  max-width: 100%;
  width: 200px;
  height: auto;
  margin: 0 auto;
}

/* Créditos abajo */
.footer__credits {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-gray-light);
  margin-top: 2rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 767px) {
  .footer {
    padding: 2rem 1rem;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__item {
    justify-content: center;
  }
  .footer__logo {
    width: 150px;
  }
}

@media (max-width: 767px) {
  /* …tus reglas actuales… */

  /* — CENTRAR en móvil los emails y el bloque comercial — */
  .footer__column--contacto .footer__item--email,
  .footer__column--contacto .footer__item--comercial {
    justify-content: center; /* el <li> entero centrado */
  }
  .footer__column--contacto .footer__item--email .footer__email,
  .footer__column--contacto .footer__item--comercial .footer__email {
    text-align: center; /* el texto centrado dentro */
    display: block; /* para que los <br> funcionen */
  }
}

/* ------------------------------------------------
   Separación y centrado del bloque “comercial”
------------------------------------------------ */
.footer__item--comercial {
  justify-content: left; /* misma distribución que el email superior */
}
.footer__item--comercial .footer__email {
  display: block; /* para que el <br> funcione bien */
  text-align: left; /* centra el texto en móvil y escritorio */
  line-height: 1.4; /* igualito que el correo */
}

/* =========================================
   LÍNEA SEPARADORA DE COLORES
   ========================================= */
.linea-separadora-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 6px;
}

.linea-separadora-grid div {
  height: 100%;
  /* Para que el scaleX “abra” desde la izquierda */
  transform-origin: left center;
}

.linea-separadora-grid div:nth-child(1),
.linea-separadora-grid div:nth-child(6) {
  background-color: var(--color-primary);
}
.linea-separadora-grid div:nth-child(2),
.linea-separadora-grid div:nth-child(3),
.linea-separadora-grid div:nth-child(4) {
  background-color: var(--color-secondary);
}

.linea-separadora-grid div:nth-child(5) {
  background-color: var(--color-tertiary);
}

/* Infraestructura */
.infraestructura-container {
  display: flex;
  position: relative;
  height: 150px;
  max-width: auto;
}

.infraestructura-red {
  background-color: var(--color-primary);
  width: 2%;
}

.infraestructura-dark-gray {
  background-color: var(--color-secondary);
  width: 60%;
  position: relative;
}

.infraestructura-light-gray {
  background-color: var(--color-tertiary);
  width: 36%;
}

.infraestructura-red-right {
  background-color: var(--color-primary);
  width: 2%;
}

.infraestructura-title {
  position: absolute;
  top: 15%; 
  left: 0;
  width: 100%;         /* <--- CLAVE */
  transform: none;     /* Ojo: esto puede ajustar la posición vertical. */
  color: rgb(255, 255, 255);
  font-size: 65px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gobold thin";
  letter-spacing: 3px;
  display: flex;        /* Usamos flex para alinear vertical */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.infraestructura-title p {
  width: 100%;

  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  font-family: "Myriad Pro Regular", sans-serif;
  font-style: italic;
  line-height: 1.3;
  padding: 0;
}

.infraestructura-title2 {
  position: absolute;
  top: 15%; 
  left: 0;
  width: 100%;         /* <--- CLAVE */
  transform: none;     /* Ojo: esto puede ajustar la posición vertical. */
  color: rgb(255, 255, 255);
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gobold thin";
  letter-spacing: 3px;
  display: flex;        /* Usamos flex para alinear vertical */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  
  .infraestructura-title  {
    width: 100%;
    top: 14%; 
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    text-transform: uppercase;
  font-family: "Gobold thin";
  
    line-height: 1.3;
    
  }
}


@media (max-width: 767px) {
  
  .infraestructura-title2  {
    width: 100%;
    top: 14%; 
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    text-transform: uppercase;
  font-family: "Gobold thin";
    
    line-height: 1.3;
    padding: 0;
  }
}


.infraestructura-title3 {
  position: absolute;
  top: 15%; 
  left: 0;
  width: 100%;         /* <--- CLAVE */
  transform: none;     /* Ojo: esto puede ajustar la posición vertical. */
  color: rgb(255, 255, 255);
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gobold thin";
  letter-spacing: 3px;
  display: flex;        /* Usamos flex para alinear vertical */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


@media (max-width: 767px) {
  
  .infraestructura-title3  {
    width: 100%;
    top: 12%; 
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    text-transform: uppercase;
  font-family: "Gobold thin";
    
    line-height: 1.3;
    padding: 0;
  }
}

.infraestructura-title4 {
  position: absolute;
  top: 15%; 
  left: 0;
  width: 100%;         /* <--- CLAVE */
  transform: none;     /* Ojo: esto puede ajustar la posición vertical. */
  color: rgb(255, 255, 255);
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gobold thin";
  letter-spacing: 3px;
  display: flex;        /* Usamos flex para alinear vertical */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


@media (max-width: 767px) {
  
  .infraestructura-title4  {
    width: 100%;
    top: 20%; 
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    text-transform: uppercase;
  font-family: "Gobold thin";
    
    line-height: 1.3;
    padding: 0;
  }
}




@media (max-width: 767px) {
  
  .infraestructura-title p {
    width: 100%;
    max-width: 100%;
    top:0%; 
    text-align: center;
    margin: 0 auto;
    font-size: 11px;
    font-family: "Myriad Pro Regular", sans-serif;
    font-style: italic;
    line-height: 1.3;
    padding: 0;
  }
}

.infraestructura-subtitle {
  position: absolute;
  top: 40%;
  /* Ajusta esta posición según sea necesario */
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(211, 21, 21);
  font-size: 12px;
  text-align: center;
  font-family: "Gobold thin";
  letter-spacing: 1px;
  max-width: 100%;
  font-style: normal;
  line-height: 1.5;
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .infraestructura-title {
    font-size: 22px;
     
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .infraestructura-title {
    font-size: 18px;
    
  }
}

@media (max-width: 768px) {
  .infraestructura-title {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 1px;
     padding: 0 4px;

  }

  .section-content {
    font-size: 16px;
    margin-bottom: 2rem;
    font-family: "Myriad Pro Regular", sans-serif;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--color-gray-dark);
  }
}

.infraestructura-content-p p {
  text-align: center;
  padding: 20px 20px 40px 20px;
  font-family: var(--font-base);
  color: var(--color-gray-light);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  font-style: normal;
}

@media (max-width: 767px) {
  .infraestructura-content-p p {
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    font-size: 1rem;
  }
}


.infraestructura-red,
.infraestructura-dark-gray,
.infraestructura-light-gray,
.infraestructura-red-right {
  height: 60%;
}

/* Contenedor centrado */
.contenedor-centrado {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* Dos columnas con video y descargas */
.dos-columnas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 80%;
}

.columna-video {
  flex: 1;
  min-width: 200px;
}

.columna-descargas {
  flex: 1;
  min-width: 300px;
  padding-left: 60px;
  text-align: left;
  color: #000;
}

.columna-descargas a {
  color: #000;
}

.columna-descargas a:hover {
  text-decoration: underline;
  color: #d32f2f;
}

.columna-descargas h3 {
  font-family: "MyriadPro Regular";
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #666;
  font-style: normal;
  font-weight: 600;
}

.columna-descargas ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
   color: var(--color-secundary);
}

.columna-descargas li {
  margin-bottom: 1px;
  text-decoration: underline;
  font-family: "MyriadPro Regular";
  font-weight: bold;
  color: var(--color-secundary);
}

@media (max-width: 768px) {
  .dos-columnas {
    flex-direction: column;
    align-items: center;
  }

  .columna-descargas {
    padding-left: 0;
    text-align: center;
     color: var(--color-secundary);
  }

  .columna-descargas h3 li{
    text-align: center;
     color: var(--color-secundary);
  }

  .columna-descargas ul {
    text-align: center;
     color: var(--color-secundary);
  }
}

/* Contenedor ensayos */
.contenedor-ensayos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  gap: 10px;
}

/* Para pantallas medianas (tablets) o superiores */
@media (max-width: 768px) {
  .contenedor-ensayos {
    max-width: 99%;
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

@media (max-width: 900px) {
  .contenedor-ensayos {
    max-width: 100%;
    padding: 20px;
  }
}
/* Para pantallas grandes (escritorio) */
@media (min-width: 1200px) {
  .contenedor-ensayos {
    max-width: 80%;
    padding: 50px;
  }
}

@media (min-width: 1200px) {
  .contenedor-ensayos {
    max-width: 80%;
    padding: 50px;
  }
}

/* =========================================
   FORMULARIO DE CONTACTO
   ========================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.contact-form__group {
  width: 100%;
}

/* Campos de texto */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 0.5rem;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Textarea específico */
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botón */
.contact-form__group--button {
  display: flex;
  justify-content: flex-start; /* o center si prefieres */
}

.contact-form__button {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 2rem;
  padding: 0.45rem 4.5rem;
  font-family: var(--font-menu);
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form__button:hover {
  background-color: darken(var(--color-primary), 10%);
}

/* Responsive: en móvil el botón ocupa todo el ancho */
@media (max-width: 767px) {
  .contact-form__group--button {
    justify-content: center;
  }
  .contact-form__button {
    width: 100%;
  }
}

/* =========================================
   Eco
   ========================================= */

.fila {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 30px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 30px;
}

/* Columna icono-titulo */
.columna-icono-titulo {
  text-align: center;
  margin-right: 20px;
  flex: 1;
  padding-bottom: 30px;
}

.columna-texto-titul p {
  text-align: center;
  font-size: 20px;
}

.columna-icono-titulo img {
  display: block;
  margin: 0 auto;
  width: 80px;
  height: auto;
}

.columna-icono-titulo p {
  margin-top: 10px;
  font-weight: bold;
  font-family: "Gobold thin", sans-serif;
  color: var(--color-gray-light);
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
}

/* Línea decorativa */
.columna-linea-color {
  display: flex;
  justify-content: center;
  flex: 0.1;
  margin-right: 20px;
}

.columna-linea-color .linea-color {
  width: 3px;
  height: 200px;
  position: relative;
}



.columna-linea-color .linea-color::before,
.columna-linea-color .linea-color::after {
  content: "";
  display: block;
  width: 5px;
  height: 25%;
  background-color: #e74c3c;
  position: absolute;
}

.columna-linea-color .linea-color::before {
  top: 0;
}

.columna-linea-color .linea-color::after {
  bottom: 0;
}

.columna-linea-color .linea-intermedia-1 {
  width: 5px;
  height: 25%;
  background-color: #333333;
  position: absolute;
  top: 25%;
}

.columna-linea-color .linea-intermedia-2 {
  width: 5px;
  height: 25%;
  background-color: #c3c3c3;
  position: absolute;
  top: 50%;
}

/* Columna texto */
.columna-texto {
  padding-left: 15px;
  line-height: 1.4;
  flex: 2;
  text-align: left;
  font-family: var(--font-base); /* hereda Myriad Pro Regular */
  color: var(--color-gray-light);
  font-size: 18px;
}

.columna-texto p {
  margin: 0 0 1rem;
  /* ya toma font-family y color de .columna-texto */
  font-size: 18px;
}

.resaltado {
  font-family: "Myriad Pro Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-secondary); /* aseguras #333 como en el resto */
  font-style: normal;
}

/* Listas */
.lista-puntos,
.lista-certificaciones,
.lista-contratos {
  list-style-type: disc;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-family: "Myriad Pro Regular", sans-serif;
  color: #4d4d4d;
}

/* ======================================================
   ENSAYOS — Responsive para Tablet (≤1024px) y Móvil (<768px)
   ====================================================== */

/* 1) Tablet y móviles grandes (≤1024px) */
@media (max-width: 1024px) {
  /* 1.1) Apilar en dos filas: primera fila = icono + stripe pseudo + título,
         segunda fila = contenido */
  .contenedor-ensayos .fila {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 1.2) Oculta la stripe original */
  .contenedor-ensayos .columna-linea-color {
    display: none;
  }

  /* 1.3) Primera fila: icono y título en línea */
  .contenedor-ensayos .columna-icono-titulo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* 1.4) Prepara el título para la pseudo–stripe */
  .contenedor-ensayos .titulo-ensayo {
    position: relative;
    margin: 0; /* eliminamos márgenes extra */
    padding-left: 10px; /* espacio para la línea */
    text-align: center;
  }

  /* 1.5) Creamos la línea multicolor junto al título */
  .contenedor-ensayos .titulo-ensayo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
      to bottom,
      var(--color-primary) 0%,
      var(--color-primary) 25%,
      var(--color-secondary) 25%,
      var(--color-secondary) 50%,
      var(--color-tertiary) 50%,
      var(--color-tertiary) 75%,
      var(--color-primary) 75%,
      var(--color-primary) 100%
    );
  }

  /* 1.6) El contenido bajo el título ocupa 100% y añade separación */
  .contenedor-ensayos .columna-texto {
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
    text-align: justify;
  }
}

/* 2) Móviles pequeños (<768px) */
@media (max-width: 767px) {
  /* 2.1) Reduce el icono */
  .contenedor-ensayos .columna-icono-titulo img {
    width: 48px;
    height: auto;
  }

  /* 2.2) Ajusta tamaño de texto del título */
  .contenedor-ensayos .titulo-ensayo {
    font-size: 1rem;
    line-height: 1.3;
  }
}

/* =========================================
   Nosotros
   ========================================= */

.vv-row {
  display: flex;
  padding-top: 30px;
  padding-bottom: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Columna ícono-título genérica */
.vv-icon-title {
  flex: 0 0 200px;
  text-align: right;
  font-weight: bold;
  font-family: "Gobold thin", sans-serif;
  color: var(--color-gray-light);
  font-size: 25px;
  line-height: 1.4;
  padding-right: 1rem;
}

/* Línea decorativa */
.vv-line-strip-col {
  display: flex;
  justify-content: center;
  flex: 0 0 10px;
  margin-right: 20px;
}

/* Línea decorativa */
.vv-line-strip-col1 {
  display: flex;
  justify-content: center;
  flex: 0 0 10px;
  margin-right: 20px;
}

.vv-line-strip-col2 {
  display: flex;
  justify-content: center;
  flex: 0 0 10px;
  margin-right: 30px;
}

.vv-line-strip {
  position: relative;
  width: 3px;
  height: 180px;
}

.vv-line-strip::before,
.vv-line-strip::after {
  content: "";
  position: absolute;
  left: -1px; /* misma X que los bloques intermedios */
  width: 5px;
  height: 25%;
  background-color: var(--color-primary);
}

.vv-line-strip::before {
  top: 0;
}
.vv-line-strip::after {
  bottom: 0;
}

.vv-line-strip1 {
  position: relative;
  width: 3px;
  height: 90px;
}

.vv-line-strip1::before,
.vv-line-strip1::after {
  content: "";
  position: absolute;
  left: -1px; /* misma X que los bloques intermedios */
  width: 5px;
  height: 25%;
  background-color: var(--color-primary);
}

.vv-line-strip1::before {
  top: 0;
}
.vv-line-strip1::after {
  bottom: 0;
}

.vv-line-strip2 {
  position: relative;
  width: 3px;
  height: 250px;
}

.vv-line-strip2::before,
.vv-line-strip2::after {
  content: "";
  position: absolute;
  left: -1px; /* misma X que los bloques intermedios */
  width: 5px;
  height: 25%;
  background-color: var(--color-primary);
}

.vv-line-strip2::before {
  top: 0;
}
.vv-line-strip2::after {
  bottom: 0;
}

.vv-line-middle-1,
.vv-line-middle-2 {
  position: absolute;
  left: -1px; /* <— CORRECCIÓN CLAVE */
  width: 5px;
  height: 25%;
}

.vv-line-middle-1 {
  top: 25%;
  background-color: var(--color-secondary);
}

.vv-line-middle-2 {
  top: 50%;
  background-color: var(--color-tertiary);
}

.vv-line-middle-11,
.vv-line-middle-22 {
  position: absolute;
  left: -1px; /* <— CORRECCIÓN CLAVE */
  width: 5px;
  height: 25%;
}

.vv-line-middle-11 {
  top: 25%;
  background-color: var(--color-secondary);
}

.vv-line-middle-12,
.vv-line-middle-23 {
  position: absolute;
  left: -1px; /* <— CORRECCIÓN CLAVE */
  width: 5px;
  height: 35%;
}

.vv-line-middle-12 {
  top: 25%;
  background-color: var(--color-secondary);
}

.vv-line-middle-22 {
  top: 50%;
  background-color: var(--color-tertiary);
}

.vv-line-middle-23 {
  top: 50%;
  background-color: var(--color-tertiary);
}

/* Columna texto */
.vv-text-col {
  padding-left: 15px;
  line-height: 1.6;
  flex: 2;
  text-align: left;
  font-family: "Myriad Pro Regular", sans-serif;
  color: var(--color-secondary);
}

.vv-text-col p {
  margin: 0 0 1rem;
  font-size: 18px;
  font-style: italic;
  color: #4d4d4d;
}

.vv-text-col li {
 
  font-size: 18px;
  font-style: italic;
  color: #4d4d4d;
}

/* Listas en Valores */
.vv-values-list {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.vv-list-col {
  flex: 1;
}

.vv-list-puntos {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
  font-family: var(--font-base);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.6;
}

/* — Quita el ancho fijo en móvil/tablet y evita overflow — */
.vv-container {
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  padding: 0 1rem; /* un poquito de “aire” lateral */
  margin: 0 auto;
}
/* ==================================================
   Ajustes responsive para sección NOSOTROS (vv-row)
   Sólo móviles/tablet, no modifica escritorio
   ================================================== */

/* — Hasta tablets grandes (<=1024px) — */
@media (max-width: 1024px) {
  /* 1) Oculta la stripe original */
  .vv-container .vv-line-strip-col .vv-line-strip-col1 .vv-line-strip-col2 {
    display: none;
  }

  /* 2) Dale más respiro al contenedor entero (espacio slider ↔ bloque y bloque ↔ footer) */
  .vv-container {
    margin: 2rem auto; /* 2rem arriba y abajo */
  }

  /* 3) Cada fila debe ser relative y dejar hueco a la stripe nueva */
  .vv-container .vv-row {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0; /* espaciado interior arriba/abajo */
    padding-left: 1.5rem; /* espacio para la stripe */
  }

  /* 4) Stripe multicolor igual que móvil */
  .vv-container .vv-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
      to bottom,
      var(--color-primary) 0%,
      var(--color-primary) 25%,
      var(--color-secondary) 25%,
      var(--color-secondary) 50%,
      var(--color-tertiary) 50%,
      var(--color-tertiary) 75%,
      var(--color-primary) 75%,
      var(--color-primary) 100%
    );
  }

  /* 5) Ajustes de título y contenido tal cual ya tenías */
  .vv-container .vv-icon-title {
    flex: none;
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
    padding-right: 0;
  }
  .vv-container .vv-text-col {
    flex: none;
    width: 100%;
    padding-left: 0;
  }
  .vv-container .vv-values-list {
    display: block;
    margin-left: 1rem;
  }
  .vv-container .vv-list-col {
    margin-bottom: 1rem;
  }
}

/* Sólo móviles (<768px) */
@media (max-width: 767px) {
  /* 1) Oculta la franja central original */
  .vv-container .vv-line-strip-col .vv-line-strip-col1 .vv-line-strip-col2  {
    display: none;
    padding: 20px;
  }

  /* 2) Cada .vv-row toma position:relative para el pseudo-elemento */
  .vv-container .vv-row {
    position: relative;
    padding-left: 1.5rem; /* deja espacio para la stripe */
  }

  /* 3) Stripe multicolor como border-left */
  .vv-container .vv-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
      to bottom,
      var(--color-primary) 0%,
      var(--color-primary) 25%,
      var(--color-secondary) 25%,
      var(--color-secondary) 50%,
      var(--color-tertiary) 50%,
      var(--color-tertiary) 75%,
      var(--color-primary) 75%,
      var(--color-primary) 100%
    );
  }
}

.container-servicios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columnas en escritorio */
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  align-items: start;
  /* Asegura que todo inicie desde arriba */
  justify-items: center;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.icon {
  width: 90px;
  height: 90px;
  /* Misma altura para todas las imágenes */
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

.title {
  color: var(--color-gray-light);
  margin: 0;
  line-height: 1.4;
  font-family: "Gobold thin", sans-serif;
  font-size: 20px;
  font-style: normal;
  letter-spacing: 2px;
}

.subtext {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* En pantallas pequeñas (móvil), 2 columnas */
@media (max-width: 768px) {
  .container-servicios {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon {
    width: 60px;
    height: 60px;
  }
}

.btn-agenda {
  display: inline-block;
  background-color: #e31c1c;
  /* Rojo */
  color: #fff;
  /* Blanco */
  font-family: "Arial", sans-serif;
  /* Fuente */
  font-size: 16px;
  /* Tamaño del texto */
  font-weight: bold;
  /* Negrita */
  text-align: center;
  /* Centra el texto */
  text-decoration: none;
  /* Sin subrayado */
  margin-top: 30px;
  padding: 10px 20px 10px;
  /* Espaciado interno */
  border-radius: 20px;
  /* Bordes redondeados */
  transition: background-color 0.3s ease;
  /* Transición */
}

.btn-agenda:hover {
  background-color: #b71c1c;
  /* Color más oscuro al pasar el mouse */
  text-decoration: underline;
  /* Subrayado al hover (opcional) */
}

.columna-texto-titul p {
  margin: 10;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
  width: 400px;
}

.contenedor-ensayoss {
  width: 100%;
  margin-bottom: 2rem;
}

.filaa {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.filaa-movil {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 200px;
  text-align: center;
  gap: 0.5rem;
}

.filaa-movil .columna-icono-titulo img {
  width: 120px;
  height: auto;
}

.filaa-movil .columna-texto-titulo p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
}

/* — Tablet y hasta Desktop pequeño (<=1024px) — */
@media (max-width: 1024px) {
  .contenedor-ensayoss.container .filaa {
    flex-direction: column;
    align-items: center; /* centrado horizontal */
    gap: 1.5rem; /* espacio vertical entre secciones */
  }
  .contenedor-ensayoss.container .columna-linea-color {
    display: none; /* ocultar stripe */
  }
  .contenedor-ensayoss.container .filaa-movil {
    flex: none; /* evitar ancho fijo */
    width: auto;
  }
  .contenedor-ensayoss.container .columna-texto {
    flex: none;
    width: 100%;
    padding: 0 1rem; /* algo de margen */
    text-align: center;
  }
  .contenedor-ensayoss.container .boton-centro {
    margin-top: 1rem;
    text-align: center;
  }
}

/* — Móvil (<768px) — */
@media (max-width: 767px) {
  .contenedor-ensayoss.container .columna-texto-titul p {
    font-size: 1rem; /* texto de título más pequeño */
    line-height: 1.3rem;
  }
  .contenedor-ensayoss.container .columna-texto p {
    font-size: 0.9rem; /* texto de lista/bullets un poco más pequeño */
  }
  .contenedor-ensayoss.container .boton-centro a.btn-agenda {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 1rem auto 0;
    font-size: 0.95rem;
  }
}

/* =========================================
   MÉTODOS DE INSPECCIÓN + EQUIPOS (prefijo met-eq-)
   ========================================= */

/* 0) Contenedor general */
.met-eq-container {
  margin-bottom: 2rem;
  /* opcional: limita el ancho y lo centra */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* 1) Estructura de la fila */
.met-eq-row {
  display: flex;
  justify-content: center; /* centrar ambas columnas */
  align-items: flex-start; /* tope superior */
  gap: 7rem; /* más espacio entre columnas */
  flex-wrap: wrap; /* adapta en móvil */
}

/* — 1.1) ICONO + TÍTULO — */
.met-eq-left-col {
  flex: 0 0 300px; /* ancho fijo algo mayor */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.met-eq-mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.met-eq-icon-wrap .met-eq-icon {
  width: 100px;
  height: auto;
}

.met-eq-title-wrap .met-eq-title {
  width: 100%;
  margin: 0;
  padding: 0 1rem 1rem 1rem;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
  letter-spacing: 2px;
}
.met-eq-left-text {
  margin-top: 1rem;
  width: 100%;
}
/* — 1.2) TEXTO IZQUIERDA — */
.met-eq-left-text p {
  font-size: 18px;
  color: var(--color-secondary);
  text-align: center;
  line-height: normal;
  font-family: "Myriad Pro Regular", sans-serif;
}

/* — 2) STRIPE DE COLOR — */
.met-eq-stripe-col {
  flex: 0 0 auto;
  display: flex;
  align-self: flex-start;
  justify-content: center;
}

.met-eq-stripe {
  position: relative;
  width: 3px;
  height: 220px; /* sube altura para alinear centrado vertical */
}

.met-eq-stripe::before,
.met-eq-stripe::after {
  content: "";
  position: absolute;
  left: -1px;
  width: 5px;
  height: 25%;
  background-color: var(--color-primary);
}
.met-eq-stripe::before {
  top: 0;
}
.met-eq-stripe::after {
  bottom: 0;
}

.met-eq-stripe-mid-1 {
  position: absolute;
  top: 25%;
  left: -1px;
  width: 5px;
  height: 25%;
  background-color: var(--color-secondary);
}
.met-eq-stripe-mid-2 {
  position: absolute;
  top: 50%;
  left: -1px;
  width: 5px;
  height: 25%;
  background-color: var(--color-tertiary);
}

/* — 3) EQUIPOS / ÍTEMS — */
.met-eq-right-col {
  flex: 0 0 300px; /* mismo ancho que la izquierda */
  display: flex;
  flex-direction: column;
  align-items: center; /* icono y título centrados */
}

.met-eq-right-text {
  margin-top: 1rem;
  width: 100%;
}

.met-eq-right-text p {
  font-size: 18px;
  color: var(--color-secondary);
  text-align: center;
  line-height: normal;
  font-family: "Myriad Pro Regular", sans-serif;
}

@media (max-width: 767px) {
  /* 1) Apilar columnas */
  .met-eq-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* 2) Ocultar la franja central */
  .met-eq-stripe-col {
    display: none;
  }

  /* 3) Hacer que cada columna ocupe 100% y centre su contenido */
  .met-eq-left-col,
  .met-eq-right-col {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 4) Ajustes del grupo móvil (icono + línea + título) */
  .met-eq-mobile-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  /* 5) Iconos más pequeños */
  .met-eq-icon {
    width: 48px;
    height: auto;
  }

  /* 6) Línea de color entre icono y título en móvil */
  .met-eq-mobile-line {
    position: relative;
    width: 3px;
    height: 30px;
  }

  /* 7) Títulos más legibles en móvil */
  .met-eq-title {
    font-size: 1rem; /* ~16px */
    line-height: 1.2;
    text-align: center;
    margin: 0;
  }

  /* 8) Texto de párrafos centrado y ligeramente más pequeño */
  .met-eq-left-text p,
  .met-eq-right-text p {
    font-size: 0.875rem; /* ~14px */
    line-height: 1.4;
    text-align: center;
    margin: 0.5rem 0;
  }
}

/* 4) Responsivo servicios  (<768px) */
@media (max-width: 767px) {
  .met-eq-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .met-eq-left-col,
  .met-eq-right-col {
    flex: none;
    width: 100%;
  }
  .met-eq-stripe-col {
    display: none; /* oculta franja en móvil */
  }
}

.vv-container {
  width: 1000px;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 40px; /* separación inferior */
  right: 20px; /* separación derecha */
  z-index: 10000; /* sobre todo */
  display: block;
  width: 130px; /* ajusta tamaño */
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
}

/* Efecto hover */
.whatsapp-float:hover {
  transform: scale(1.1);
}

.clientes p {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  max-width: 1000px;
  font-weight: 300; /* Ligero para el texto general */
  letter-spacing: 1.5px;
}

.clientes strong {
  font-weight: 900; /* Bien fuerte para los nombres */
  letter-spacing: 1.5px;
}

.upload-error-message {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.upload-error-message[data-type="error"] {
  background: #ffe5e5;
  color: #c00;
}
.upload-error-message[data-type="success"] {
  background: #e5ffed;
  color: #080;
}

/* File list container */
.file-counter {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  margin-bottom: 0.5rem;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.file-item:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.file-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.file-icon.pdf {
  fill: #c22;
}
.file-icon.img {
  fill: #666;
}

.file-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.file-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}
.file-size {
  font-size: 0.8rem;
  color: var(--color-gray-light);
}

.remove-file {
  margin-left: auto;
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}
.remove-file:hover {
  color: #c22;
  transform: scale(1.2);
}

.file-status-loaded {
  margin-left: auto;
  font-size: 1.2rem;
  color: #28a745;
}

/* Dropzone */
.upload-dropzone {
  border: 2px dashed var(--color-gray-light);
  border-radius: 8px;
  padding: 30px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hover normal */
.upload-dropzone:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Cuando arrastras un archivo encima */
.upload-dropzone.dragover {
  border-color: var(--color-primary);
  background-color: rgba(227, 28, 28, 0.05); /* rojo suave */
  box-shadow: 0 6px 18px rgba(227, 28, 28, 0.15);
}

/* Botón de carga */
.upload-button {
  opacity: 0.9;
  transition: opacity 0.2s;
  background-color: #4d4d4d;
}
.upload-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.upload-button:not(:disabled):hover {
  opacity: 1;
}

.vv-text-1 {
  padding-left: 15px;
  line-height: 1.6;
  flex: 2;
  text-align: left;
  font-family: var(--font-base);
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .vv-text-1 {
    flex: none;
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .vv-text-1 {
    padding-left: 0;
  }
}

/* ==============================
   Menú en una sola línea (móvil)
   ============================== */
@media (max-width: 767px) {
  .menu {
    width: 100%;
    overflow-x: hidden; /* nunca scroll */
    margin: 0;
    padding: 0;
  }
  .menu ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.1rem;  /* ¡MUY poco espacio entre items! */
    width: 100%;
    padding: 0 2px;
    margin: 0;
  }
  .menu li {
    flex: 1 1 0;   /* ¡Permite que todos los items se repartan el ancho! */
    min-width: 0;  /* CLAVE para que el texto se ajuste y no desborde */
    text-align: center;
  }
  .menu a {
    font-size: 0.6rem;  /* Letra más pequeña aún */
    padding: 0.1em 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* si algo se pasa, se corta elegante */
    width: 100%;
    display: block;
  }
}

.parrafo_italic {
  text-align: left;
  padding: 20px 20px 40px 20px;
  font-family: var(--font-base);
  color: var(--color-gray-light);
  font-size: 18px;
  line-height: 1.;
  max-width: 80%;
  margin: 0 auto;
  font-style: italic;
}

.parrafo_normal {
  text-align: center;
  padding: 20px 20px 40px 20px;
  font-family: var(--font-base);
  color: var(--color-gray-light);
  font-size: 18px;
  line-height: 1.;
  max-width: 80%;
  margin: 0 auto;
  font-style: normal;
}

.parrafo_normal1 {
  text-align: justify;
  padding: 20px 20px 40px 20px;
  color: var(--color-gray-light);
  font-size: 18px;
  line-height: 1.;
  max-width: 80%;
  margin: 0 auto;
  font-style: normal;
}

.parrafo_normal p {
  text-align: center;
  padding: 20px 20px 40px 20px;
  font-family: var(--font-base);
  color: var(--color-gray-light);
  font-size: 18px;
  line-height: 1.;
  margin: 0 auto;
  font-style: italic;
}

.parrafo_normal_dos p {
  text-align: center;
  padding: 20px 20px 40px 20px;
  font-family: var(--font-base);
  color: var(--color-gray-light);
  font-size: 18px;
  line-height: 1.;
  margin: 0 auto;
  font-style: normal;
}

.parrafo_bold_italic {
  text-align: left;
  font-family: var(--font-base-semibold);
  color: var(--color-gray-dark);
  font-size: 1.25rem;
  line-height: 1.;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
}

.parrafo_normal strong{
  text-align: left;
  font-family: var(--font-base-bold);
  color: var(--color-gray-light);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  font-style: normal;
}

.parrafo_normal1 strong{
  text-align: left;
  font-family: var(--font-base-bold);
  color: var(--color-gray-light);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  font-style: normal;
  
}

@media (max-width: 767px) {
  .parrafo_normal1 {
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .parrafo_normal_dos p {
    text-align: center !important;
    
    font-size: 1rem;
  }
}



.parrafo_normal_dos strong{
  text-align: left;
  font-family: var(--font-base-bold);
  color: var(--color-gray-light);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  font-style: normal;
}



@media (max-width: 1024px) {
  .vv-line-strip-col,
  .vv-line-strip-col1,
  .vv-line-strip-col2 {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slider-container {
    margin-top: calc(var(--top-bar-height) + var(--header-height) + 16px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-divider {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .columna-texto,
  .columna-texto p {
    text-align: center !important;  /* O left o start según prefieras */
    word-spacing: normal !important;
    letter-spacing: normal !important;
    hyphens: auto;    
     word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: manual !important;   /* Evita guiones automáticos */   
  font-size: 1rem;         /* (opcional) Permite cortar palabras elegantes */
  }

  .lista-certificaciones, .lista-contratos, .lista-puntos {
    font-size: 1rem; 
  }
}


@media (max-width: 767px) {
  .contenedor-ensayos {
    max-width: 96% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .columna-texto {
    width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    box-sizing: border-box;
  }
  .columna-texto p {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* Stripe especial de 200px solo para .linea-color--200 */
.linea-color--200 {
  height: 200px !important;
}

.linea-color--200 .linea-intermedia-1,
.linea-color--200 .linea-intermedia-2 {
  height: 25%; /* o el porcentaje que usabas antes */
}
