/** Colorimetría **/
:root {
  --color-blanco: #ffffff;
  --color-negro: #2c2b2b;
  --color-verde: #00b4aa;
  --color-azul-oscuro: #09435b;
  --color-morado: #954a9a;

  --fuente-principal: "Syne", sans-serif;
  --fuente-secundaria: "Rubik", sans-serif;
}

.logo img {
  width: 240px;
  transition: width 0.3s ease;
}

/* Cuando el header es sticky */
.sticky .logo img {
  width: 180px;
}

.header-one {
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.sticky .header-one {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .logo img {
    width: 160px;
  }
  .sticky .logo img {
    width: 140px;
  }
}

.banner-content-area .container {
  padding-top: 120px;
  padding-bottom: 120px;
}
.banner-area-one {
  min-height: 100vh;
}

.imagen-container {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

/** Home **/ 

.icon img {
  width: 70px;
}
.btn-entrega {
  display: inline-block;
  padding: 8px 24px;
  background-color: #00beb1; /* verde turquesa */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: var(
    --fuente-principal,
    sans-serif
  ); /* o reemplaza con tu fuente */
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.btn-entrega:hover {
  background-color: #09435b; /* un poco más oscuro en hover */
  color: #fff;
}

/* Bloque general */
.servicio-box {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  padding: 39px;
  border: 2px solid #954a9a !important;
  border-radius: 12px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  background-color: #fff;
}

.servicio-box:hover {
  background-color: #f8f8f8;
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
}
.icono-servicio img {
  width: 60px;
}
.flecha-servicio img {
  width: 20px;
}

/* Clases reutilizables que ya te pasé (añadí si aún no están) */
.text-verde {
  color: #00b4aa;
}

.text-morado {
  color: #954a9a;
}

.tag-18 {
  font-size: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
}

.titulo-48 {
  font-size: 40px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 40px;
  color: #2c2b2b;
}

.parrafo {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  color: #2c2b2b;
}
.tag-chip {
  display: inline-block;
  padding: 4px 16px;
  border: 1.5px solid #00b4aa;
  border-radius: 50px;
  background-color: transparent;
  font-size: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  color: #00b4aa;
  line-height: 1.5;
  margin: 20px 0px;
}
.contact-item img {
  width: 50px;
}

/** Pagina de Contacto **/

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

.contact-item p {
  margin-bottom: 12px; /* separa el texto de la línea */
}

.contact-item .bottom-line {
  width: 100%;
  max-width: 120px;
  height: 2px; /* grosor */
  background-color: var(--color-morado);
  margin-top: auto; /* empuja la línea al fondo si el contenedor tiene altura fija */
}

/** Menú **/
.header-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo a la izquierda, header-right a la derecha */
  gap: 20px;
}

/* El logo y el botón no deben crecer */
.logo-area-start,
.header-right {
  flex: 0 0 auto;
}

/* El nav-area ocupa todo el espacio restante y centra sus items */
.nav-area {
  flex: 1;
  display: flex;
  justify-content: center;
}

.btn-quienes-somos {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00c2b3; /* o el color institucional que uses */
  color: #fff;
  font-family: var(--fuente-principal);
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-quienes-somos:hover {
  background-color: #09435b; /* un tono más oscuro al pasar el mouse */
  color: #fff;
}

/** Footer **/
.logo-widget img {
  max-width: 160px;
  height: auto;
}

.footer-wrapper-style-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
/* === Footer general === */
.rts-footer-area,
.rts-footer-area a,
.rts-footer-area p,
.copyright-area,
.copyright-area a .copyright-area p {
  color: #fff !important;
}

/* === Estilos para encabezados de widgets === */
.rts-footer-area h2,
.rts-footer-area h3,
.rts-footer-area .widget-title {
  font-size: 18px; /* O ajustá como desees, 16px también es una buena opción */
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .rts-footer-area .col-md-4:first-child {
    text-align: center;
  }

  .rts-footer-area .col-md-4:first-child img {
    max-width: 150px;
    margin-bottom: 20px;
  }
}
.logo-widget img {
  max-width: 300px;
  height: auto;
}

.titulo-24 {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

/** Banner Final Single **/
.servicio-box-banner {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  padding: 39px !important;
  border: 2px solid #954a9a !important;
  border-radius: 12px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  background-color: #fff;
  color: #954a9a;
}

.servicio-box-banner:hover {
  background-color: #f8f8f8;
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
}

.health-package-single-wrapper a.thumbnail img {
    transition: 0.3s;
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.tamaño-imagen img {
	object-fit: cover;
	width: 100%;
	height: 500px !important;
}