@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #07122b;
  color: #fff;
  font-family: "Inter", sans-serif;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, 140rem);
  margin: 0 auto;
}

/* =========================
   PRIMARY BUTTON
========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.2rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #00c6c6, #0077b6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* =========================
   OUTLINE BUTTON
========================= */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 1rem;
  border: 2px solid #d7b354;
  background: #d7b354;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #d7b354;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #0B0F19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header {
  /* LOGO */
}
.header__logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 193px;
}
.header {
  /* NAV DESKTOP */
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__link {
  text-decoration: none;
  font-size: 15px;
  color: #A1A1AA;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #FFFFFF;
}
.header {
  /* =========================
     DROPDOWNS DESKTOP
  ========================= */
}
.header__dropdown {
  position: relative;
}
.header__dropdown::after {
  content: "";
  display: block;
  width: 7rem;
  height: 2px;
  margin-top: 0.2rem;
  background: rgb(0, 166, 166);
}
.header__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: color 0.25s ease;
}
.header__dropdown-toggle::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: 0.3s ease;
}
.header__dropdown:hover .header__dropdown-toggle {
  color: #FFFFFF;
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 1.6rem);
  left: 0;
  min-width: 26rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 2rem;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 200;
}
.header__dropdown-menu a {
  display: block;
  padding: 1.2rem 1.4rem;
  border-radius: 1.2rem;
  color: #E5E7EB;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.header__dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown:hover .header__dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}
.header {
  /* CTA */
}
.header__cta {
  font-size: 14px;
  margin-left: 24px;
}
.header {
  /* HAMBURGUESA */
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 500;
  margin-left: 16px;
  width: 25px;
  height: 24px;
  background: #07122b;
  border: none;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 950px) {
  .header__nav, .header__cta {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 800;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =========================
   MOBILE NAV
========================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #0B0F19;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
  z-index: 900;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.mobile-nav__content {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav {
  /* ACORDEONES */
}
.mobile-nav__accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav__accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: rgb(0, 166, 166);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.mobile-nav__accordion-icon {
  transition: 0.3s ease;
  font-size: 18px;
  line-height: 1;
}
.mobile-nav__accordion-content {
  display: none;
  padding-bottom: 1rem;
}
.mobile-nav__accordion-content a {
  display: block;
  padding: 0.6rem 0;
  margin: 0;
  color: #A1A1AA;
  font-size: 14px;
  text-decoration: none;
}
.mobile-nav__accordion-content a:hover {
  color: #fff;
}
.mobile-nav__accordion.active .mobile-nav__accordion-content {
  display: block;
}
.mobile-nav__accordion.active .mobile-nav__accordion-icon {
  transform: rotate(45deg);
}
.mobile-nav__section {
  padding-top: 1rem;
}
.mobile-nav__title {
  color: #CBD5E1;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mobile-nav a {
  display: block;
  color: #E5E7EB;
  margin-bottom: 10px;
  font-size: 14px;
}
.mobile-nav a:hover {
  color: #fff;
}

.mobile-nav .a-mob {
  color: rgb(0, 166, 166);
}

button .a-nav {
  color: rgb(0, 166, 166);
}

body.no-scroll {
  overflow: hidden;
}

/* =========================
   HEADER FIXED & SCROLL
========================= */
body {
  padding-top: 80px;
}

.header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(7, 18, 43, 0.8901960784);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: none;
}

/* CTA MOBILE */
.btn_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000 !important;
  max-width: 177px;
  margin: 2rem auto 0;
  text-align: center;
}

.footer {
  color: #d1d5db;
  padding: 7rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  background: #000510;
}

/* =========================
   EFECTO DECORATIVO
========================= */
.footer::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.12), transparent 70%);
  top: -15rem;
  right: -15rem;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  bottom: -10rem;
  left: -10rem;
  pointer-events: none;
}

/* =========================
   GRID
========================= */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

/* =========================
   BRAND
========================= */
.footer__brand {
  max-width: 32rem;
}

.footer__logo img {
  width: 17rem;
  margin-bottom: 1.5rem;
}

.footer__text {
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

/* =========================
   TITULOS
========================= */
.footer h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin-top: 0.8rem;
  background: #00a6a6;
}

/* =========================
   LINKS
========================= */
.footer a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: #94a3b8;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.footer a:hover {
  color: #00a6a6;
  transform: translateX(5px);
}

/* =========================
   COLUMNAS
========================= */
.footer__col p {
  color: #94a3b8;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* =========================
   SOCIAL
========================= */
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 2rem 0;
}

.footer__social a {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.footer__social svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

.footer__social a:hover {
  background: #00a6a6;
  border-color: #00a6a6;
  transform: translateY(-4px);
}

/* =========================
   LIBRO
========================= */
.footer__book {
  margin-top: 2rem;
  display: inline-flex !important;
  align-items: center;
  gap: 0.8rem;
  color: #00a6a6 !important;
  font-weight: 600;
}

.footer__book:hover {
  color: #ffffff !important;
}

/* =========================
   BOTTOM
========================= */
.footer__bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 1.35rem;
  color: #64748b;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer__bottom a {
  color: #00a6a6;
  margin: 0;
}

.footer__bottom a:hover {
  color: #ffffff;
  transform: none;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 540px) {
  .footer__bottom {
    flex-direction: column;
  }
}
/* =========================
   MOBILE PEQUEÑO
========================= */
@media (max-width: 418px) {
  .footer {
    padding-top: 6rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer__brand {
    max-width: 100%;
  }
  .footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer h3::after {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__social {
    justify-content: center;
  }
  .footer a:hover {
    transform: none;
  }
}
/* =========================
   HERO
========================= */
.hero {
  padding: 8rem 0;
  position: relative;
  background-image: url(../images/hero/backgroud-hero.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* GRID PRINCIPAL */
.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* =========================
   TEXTO
========================= */
.hero__subtitle {
  color: #d7b354;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1;
  margin: 2rem 0;
  color: #001133;
}
.hero h1 span {
  color: #d7b354;
}

.hero p {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* =========================
   BOTONES
========================= */
.hero__buttons {
  display: flex;
  gap: 2rem;
}

/* =========================
   TRUST PANEL
========================= */
.hero__trust {
  margin-top: 4rem;
  max-width: 49rem;
  background: #07122b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero__trust-header {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7b354;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hero__trust-card {
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
  text-align: center;
}
.hero__trust-card:hover {
  background: rgba(0, 166, 166, 0.06);
}

.hero__trust-card:nth-child(2),
.hero__trust-card:nth-child(4) {
  border-right: 0;
}

.hero__trust-card:nth-child(3),
.hero__trust-card:nth-child(4) {
  border-bottom: 0;
}

.hero__trust-card strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0rem;
}

.hero__trust-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  line-height: 1.4;
}

/* =========================
   IMAGEN
========================= */
.hero__image {
  position: relative;
  z-index: 1;
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(0, 166, 166, 0.35), transparent 60%);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.8;
}

.hero__image img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-box-reflect: below -4px linear-gradient(to top, rgb(255, 255, 255) -14%, rgba(255, 255, 255, 0.25) 7%, rgba(26, 26, 26, 0.25) -35%, transparent 15%);
}

.hero__image:hover img {
  transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1240px) {
  .hero h1 {
    font-size: 5rem;
  }
  .hero__wrapper {
    gap: 2rem;
  }
}
@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1125px) {
  .hero__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .hero__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__trust {
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__image {
    display: none;
  }
}
@media (max-width: 655px) {
  .hero h1 {
    font-size: 4rem;
  }
  .hero__trust-card strong {
    font-size: 2.8rem;
  }
}
@media (max-width: 619px) {
  .hero__trust-card strong {
    font-size: 1.7rem;
  }
  .hero__trust-card span {
    font-size: 1.3rem;
  }
}
@media (max-width: 470px) {
  .hero h1 {
    font-size: 3.5rem;
    margin: 1.5rem 0;
  }
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 1.7rem;
  }
  .hero__trust {
    margin-top: 3rem;
  }
  .hero__trust-header {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  .hero__trust-card strong {
    font-size: 1.4rem;
  }
  .hero__trust-card span {
    font-size: 1.1rem;
  }
  .hero__trust-card {
    padding: 0.5rem 2rem;
  }
}
@media (max-width: 450px) {
  .hero h1 {
    font-size: 3rem;
    margin: 1.5rem 0;
    line-height: 1.1;
  }
}
@media (max-width: 450px) {
  .hero h1 {
    font-size: 2.8rem;
    margin: 1.5rem 0;
    line-height: 1.1;
  }
}
.specialties {
  padding: 5rem 0 5rem;
  background: #01050e;
}

/* =========================
   TITLE
========================= */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
}
.section-title span {
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a6a6;
}
.section-title h2 {
  font-size: 3.6rem;
  color: #fff;
}

/* =========================
   GRID
========================= */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

/* =========================
   CARD
========================= */
.specialties__card {
  background: linear-gradient(145deg, #735406, #bf9714, #130d00);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 1.6rem;
  padding: 2.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem; /* 🔥 clave: elimina espacios raros */
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.specialties__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}
.specialties__card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  transform: rotate(25deg);
  opacity: 0.12;
  pointer-events: none;
}

/* =========================
   ICON
========================= */
.specialties__icon {
  width: 60px;
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialties__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================
   TEXT
========================= */
.specialties__card h3 {
  font-size: 1.45rem;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
/* 4 columnas */
@media (max-width: 1100px) {
  .specialties__card {
    padding: 2rem;
  }
  .specialties__icon {
    width: 56px;
    height: 56px;
  }
  .specialties__card h3 {
    font-size: 1.35rem;
  }
}
/* 3 columnas */
@media (max-width: 900px) {
  .specialties__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
  .specialties__card {
    padding: 1.8rem;
  }
  .specialties__icon {
    width: 52px;
    height: 52px;
  }
  .specialties__card h3 {
    font-size: 1.3rem;
  }
}
/* 2 columnas */
@media (max-width: 600px) {
  .specialties__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .specialties__card {
    padding: 1.6rem;
  }
  .specialties__icon {
    width: 48px;
    height: 48px;
  }
  .specialties__card h3 {
    font-size: 1.25rem;
  }
}
/* 1 columna */
@media (max-width: 380px) {
  .specialties__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services {
  padding: 8rem 0;
  width: 100%;
  overflow: hidden;
  background: #07122b;
}

.services__inner {
  width: 100%;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  margin: 3rem 0rem 3rem 0rem;
}
.section-title span {
  color: #00a6a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 600;
}
.section-title h2 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.1;
}

.services__reels {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  padding-top: 1.3rem;
}

.services__track {
  display: flex;
  gap: 1.3rem;
  width: max-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.services__track.is-dragging {
  cursor: grabbing;
}

.services__track.is-dragging a {
  pointer-events: none;
}

.services__card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.services__card:hover {
  transform: translateY(-6px);
}

.services__img {
  height: 160px;
  overflow: hidden;
}
.services__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.services__card:hover .services__img img {
  transform: scale(1.05);
}

.services__content {
  padding: 1rem 2rem;
  text-align: center;
}
.services__content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1b2b3a;
  margin-bottom: 0.5rem;
}
.services__content p {
  font-size: 1.5rem;
  color: #4b5563;
  min-height: 7rem;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}

.bservice {
  padding: 0.8rem 2.2rem;
  border-radius: 7px;
}

.specialties__more {
  margin-top: 4rem;
  text-align: center;
}

.specialties__more-btn {
  gap: 1rem;
}

@media (max-width: 768px) {
  .services__card {
    flex: 0 0 220px;
  }
}
@media (max-width: 423px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}
.online {
  padding: 5rem 0;
  background: #ffffff;
}

.online__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem 6rem;
}

/* =========================
   IMAGE
========================= */
.online__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.online__image picture,
.online__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.online__image img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
.online__image:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */
.online__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.online__content h2 {
  font-size: 3.2rem;
  color: #1b2b3a;
  font-weight: 700;
  line-height: 1.2;
}
.online__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.online__content li {
  font-size: 1.6rem;
  color: #4b5563;
  position: relative;
  padding-left: 2.5rem;
}
.online__content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a6a6;
  font-weight: bold;
}

/* =========================
   SUBTITLE (reutilizado)
========================= */
.hero__subtitle {
  color: #00a6a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* =========================
   BUTTON
========================= */
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 820px) {
  .online__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
  .online__content {
    padding: 0rem 1rem 0rem 2rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .online__content h2 {
    font-size: 2.6rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 1rem;
  }
}
.products {
  padding: 8rem 0;
  background: #f7fafc;
  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   TITLE
========================= */
.title-section {
  text-align: center;
  margin-bottom: 5rem;
}
.title-section span {
  display: block;
  font-size: 1.4rem;
  color: #00a6a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.title-section h2 {
  font-size: 3.2rem;
  color: #1b2b3a;
  font-weight: 700;
}

/* =========================
   CONTENEDOR DRAG
========================= */
.products__drag {
  width: 100%;
  overflow: visible;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.products__drag.is-dragging {
  cursor: grabbing;
}

/* =========================
   REELS
========================= */
.products__reels {
  overflow: hidden;
  padding-top: 1rem;
}

/* =========================
   TRACK
========================= */
.products__track {
  display: flex;
  gap: 1.3rem;
  width: max-content;
  will-change: transform;
}

/* =========================
   CARD
========================= */
.products__card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.products__card:hover {
  transform: translateY(-8px);
}

/* =========================
   IMAGE
========================= */
.products__card picture {
  width: 100%;
  aspect-ratio: 4.25/3;
  overflow: hidden;
  display: block;
}

.products__card img {
  width: 100%;
  height: 212px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* =========================
   CONTENT
========================= */
.products__content {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.products__content h3 {
  font-size: 1.8rem;
  color: #1b2b3a;
  font-weight: 600;
}

.products__content p {
  font-size: 1.5rem;
  color: #4b5563;
  line-height: 1.4;
}

/* =========================
   BOTÓN
========================= */
.products__btn {
  margin-top: 1.5rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.8rem;
  border-radius: 9px;
  background: linear-gradient(90deg, #00c6c6, #0077b6);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.products__btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .products__card {
    flex: 0 0 260px;
  }
  .products__content {
    padding: 1rem 1.8rem;
  }
  .products__content h3 {
    font-size: 1.6rem;
  }
  .products__content p {
    font-size: 1.35rem;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .products__card {
    flex: 0 0 260px;
  }
  .title-section h2 {
    font-size: 2.2rem;
  }
  .products__content {
    padding: 1.5rem;
  }
  .products__content h3 {
    font-size: 1.5rem;
  }
  .products__content p {
    font-size: 1.3rem;
  }
  .products__btn {
    font-size: 1.3rem;
    padding: 0.9rem 1.6rem;
  }
}
/* ==================================================
HOMECARE
================================================== */
.homecare {
  padding: 8rem 0;
  background: #07122b;
}

/* ==================================================
DESKTOP
TEXTO | IMAGEN
================================================== */
.homecare__banner {
  max-width: 140rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

/* =========================
IMAGEN
========================= */
.homecare__banner picture {
  display: block;
  height: 100%;
}

.homecare__banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
CONTENT
========================= */
.homecare__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem;
  color: white;
}

.homecare__content h2 {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 2rem 0;
}

.homecare__content p {
  max-width: 55rem;
  font-size: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
}

.hero__subtitle {
  display: inline-flex;
  width: fit-content;
  padding: 0.8rem 1.8rem;
  border-radius: 999rem;
  border: 2px solid #d7b354;
  background: #d7b354;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

/* ==================================================
TABLET Y MOBILE
BANNER + TEXTO ENCIMA
================================================== */
@media (max-width: 1417px) {
  .homecare__banner {
    border-radius: 0rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .homecare__content {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .homecare__content h2 {
    font-size: 4rem;
  }
}
@media (max-width: 1303px) {
  .homecare__content h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1172px) {
  .homecare__content h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1042px) {
  .homecare__content h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 989px) {
  .homecare__content h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 890px) {
  .homecare {
    padding: 0;
  }
  .homecare__banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 39rem;
    border-radius: 0;
  }
  .homecare__banner picture {
    width: 100%;
    height: 100%;
  }
  .homecare__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .homecare__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.75));
    z-index: 1;
  }
  .homecare__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
  }
  .homecare__content p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ==================================================
MOBILE
================================================== */
@media (max-width: 768px) {
  .homecare__banner {
    height: 40rem;
  }
  .homecare__content {
    padding: 0rem 3rem;
  }
  .homecare__content h2 {
    font-size: 3rem;
  }
  .homecare__content p {
    font-size: 1.6rem;
  }
}
@media (max-width: 520px) {
  .homecare__banner {
    height: 34rem;
  }
  .homecare__content h2 {
    font-size: 2.5rem;
  }
  .homecare__content p {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
    line-height: 1.4;
  }
  .btn-hospitaliza {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    padding: 0.7rem 1.4rem;
  }
}
/* ==========================================================
   SECTION
========================================================== */
.testimonials {
  padding: 8rem 0;
  background: #07122b;
}

/* ==========================================================
   HEADING
========================================================== */
.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.section-heading span {
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a6a6;
  margin-bottom: 1rem;
}
.section-heading h2 {
  font-size: 3.6rem;
  color: #ffffff;
  line-height: 1.2;
}

/* ==========================================================
   WRAPPER
========================================================== */
.testimonials__wrapper {
  width: 100%;
}

/* ==========================================================
   GRID DESKTOP
========================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ==========================================================
   CARD
========================================================== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 166, 166, 0.15);
  border-color: rgba(0, 166, 166, 0.3);
}
.testimonial-card p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #d1d5db;
}
.testimonial-card h4 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================
   TOP
========================================================== */
.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ==========================================================
   AVATAR
========================================================== */
.testimonial-card__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #00a6a6;
}
.testimonial-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   INFO
========================================================== */
.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ==========================================================
   BADGE
========================================================== */
.testimonial-card__badge {
  font-size: 1.2rem;
  color: #00a6a6;
}

/* ==========================================================
   STARS
========================================================== */
.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonial-card__stars .stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.testimonial-card__stars .rating {
  font-size: 1.2rem;
  color: #9ca3af;
}

/* ==========================================================
   CONTROLES
========================================================== */
.testimonials__controls {
  display: none;
}

.testimonials__nav {
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 50%;
  background: #00a6a6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonials__nav svg {
  width: 2.4rem;
  height: 2.4rem;
}
.testimonials__nav:hover {
  transform: scale(1.05);
  background: #008b8b;
}

/* ==========================================================
   TABLET Y MOVIL
========================================================== */
@media (max-width: 1011px) {
  .testimonials__grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    flex: 0 0 calc(72% - 20rem);
  }
  .testimonials__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  }
}
/* ==========================================================
   MOVIL
========================================================== */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 3rem;
  }
  .testimonial-card {
    flex: 0 0 100%;
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 2.5rem;
  }
  .testimonial-card p {
    font-size: 1.5rem;
  }
  .testimonials__nav {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0b1220, #0f1b33);
  position: relative;
  overflow: hidden;
}

/* =========================
   EFECTO DECORATIVO
========================= */
.cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.15), transparent 60%);
  top: -200px;
  right: -200px;
  filter: blur(20px);
  pointer-events: none;
}

/* =========================
   WRAPPER
========================= */
.cta__wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* =========================
   TITLE
========================= */
.cta__wrapper h2 {
  font-size: 4rem;
  line-height: 1.2;
  color: #fff;
}

/* =========================
   BUTTONS
========================= */
.cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* =========================
   BTN BASE
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* =========================
   PRIMARY
========================= */
/* =========================
   OUTLINE
========================= */
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .cta__wrapper h2 {
    font-size: 2.8rem;
  }
  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}
.location {
  padding: 8rem 0;
  background: #07122b;
}

/* =========================
   GRID
========================= */
.location__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* =========================
   INFO CARD
========================= */
.location__info {
  background: #111a2e;
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.location__info h3 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
.location__info p {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 1.5rem;
}

/* =========================
   LIST
========================= */
.location__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
}
.location__list li {
  font-size: 1.5rem;
  color: #d1d5db;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.location__list strong {
  color: #ffffff;
}

/* =========================
   MAP
========================= */
.location__map {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 500px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   HOVER
========================= */
.location__info:hover,
.location__map:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
  .location__map {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  .location {
    padding: 6rem 0;
  }
  .location__info {
    padding: 2.5rem;
  }
  .location__info h3 {
    font-size: 2.2rem;
  }
  .location__map {
    min-height: 350px;
  }
}
@media (max-width: 480px) {
  .location__info {
    padding: 2rem;
    text-align: center;
  }
  .location__info h3 {
    font-size: 2rem;
  }
  .location__info p,
  .location__list li {
    font-size: 1.4rem;
  }
  .location__map {
    min-height: 300px;
  }
}
/* ==========================================
   SECTION
========================================== */
.videos {
  padding: 0rem 0 6rem;
  background: #07122b;
}

.videos .section-title {
  text-align: center;
  margin-bottom: 5rem;
}
.videos .section-title span {
  color: #00a6a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 600;
}
.videos .section-title h2 {
  color: #ffffff;
  font-size: 3.2rem;
  margin-top: 1rem;
  font-weight: 700;
}

/* ==========================================
   WRAPPER
========================================== */
.videos__wrapper {
  width: 100%;
}

/* ==========================================
   DESKTOP
========================================== */
.videos__track {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.videos__card {
  width: 100%;
  max-width: 280px;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
}

.videos__card:hover {
  transform: translateY(-5px);
}

.videos__card video {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  object-fit: cover;
}

/* ==========================================
   CONTROLES
========================================== */
.videos__controls {
  display: none;
}

.videos__nav {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #00a6a6;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.videos__nav:hover {
  transform: scale(1.08);
}

/* ==========================================
   TABLET Y MOVIL
========================================== */
@media (max-width: 890px) {
  .videos__track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 2rem;
    padding-top: 1rem;
  }
  .videos__track::-webkit-scrollbar {
    display: none;
  }
  .videos__card {
    flex: 0 0 255px;
  }
  .videos__controls {
    display: flex;
    width: 100%;
    max-width: 280px;
    margin: 2rem auto 0;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .videos__track {
    gap: 1.5rem;
  }
  .videos__card {
    flex: 0 0 240px;
  }
  .videos__controls {
    max-width: 240px;
  }
  .videos .section-title h2 {
    font-size: 2.6rem;
  }
}
/* ==================================================
CONTACT FORM
================================================== */
.contact-form {
  padding: 8rem 0;
  background: #07122b;
}

/* ==================================================
HEADING
================================================== */
.contact-form__heading {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-form__heading span {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #7dd3fc;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
}

.contact-form__heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact-form__heading p {
  max-width: 70rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.8rem;
  line-height: 1.5;
}

/* ==================================================
FORM
================================================== */
.contact-form__form {
  max-width: 105rem;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* ==================================================
LAYOUT FORM
================================================== */
.form-group--full {
  grid-column: 1/-1;
}

.contact-form__form .btn-primary {
  grid-column: 1/-1;
}

/* ==================================================
FIELDS
================================================== */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-radius: 1.4rem;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 16rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* ==================================================
SELECT
================================================== */
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.2rem;
}

.form-group select option {
  background: #07122b;
  color: white;
}

/* ==================================================
BUTTON
================================================== */
.contact-form__form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.8rem;
  font-size: 1.7rem;
  margin-top: 1rem;
  cursor: pointer;
}

/* ==================================================
816px
================================================== */
@media (max-width: 816px) {
  .contact-form__form {
    grid-template-columns: 1fr;
  }
  .form-group--full {
    grid-column: auto;
  }
  .contact-form__form .btn-primary {
    grid-column: auto;
  }
}
/* ==================================================
RESPONSIVE
================================================== */
@media (max-width: 768px) {
  .contact-form {
    padding: 6rem 0;
  }
  .contact-form__heading {
    margin-bottom: 3rem;
  }
  .contact-form__form {
    padding: 3rem 2rem;
  }
  .contact-form__heading h2 {
    font-size: 3.5rem;
  }
  .contact-form__heading p {
    font-size: 1.6rem;
  }
}
@media (max-width: 520px) {
  .contact-form__form {
    border-radius: 2rem;
  }
  .contact-form__heading h2 {
    font-size: 3rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1.4rem 1.6rem;
    font-size: 1.5rem;
  }
  .contact-form__form .btn-primary {
    font-size: 1.4rem;
    padding: 1rem;
  }
}
optgroup {
  color: #fff;
  background-color: #07122b;
}

.whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
}

p {
  color: #000000;
  font-size: 1.4rem;
}

.whatsapp__toggle {
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp__box {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 340px;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}

.whatsapp__box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp__header {
  background: #25d366;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp__header h3 {
  margin: 0;
  font-size: 1.8rem;
}

.whatsapp__header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.whatsapp__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.whatsapp__body input,
.whatsapp__body textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1.4rem;
}

.whatsapp__body textarea {
  min-height: 100px;
  resize: none;
}

.whatsapp__send {
  border: none;
  background: #25d366;
  color: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.whatsapp__toggle svg {
  width: 69px;
  height: 62px;
  display: block;
}

/* =====================================
   mensaje flotante
===================================== */
.whatsapp__bubble {
  position: absolute;
  right: 75px;
  bottom: 10px;
  background: #fff;
  color: #1b2b3a;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  animation: whatsappFloat 2s ease infinite, whatsappShowHide 6s linear infinite;
}

.whatsapp__bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
}

/*
|--------------------------------------------------------------------------
| EFECTO FLOTAR
|--------------------------------------------------------------------------
*/
@keyframes whatsappFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
/*
|--------------------------------------------------------------------------
| APARECER 3s / DESAPARECER 3s
|--------------------------------------------------------------------------
*/
@keyframes whatsappShowHide {
  0%, 49% {
    opacity: 1;
    visibility: visible;
  }
  50%, 100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* =====================================
   TABLET
===================================== */
@media (max-width: 768px) {
  .whatsapp__toggle svg {
    width: 60px;
    height: 50px;
    display: block;
  }
  .whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .whatsapp__box {
    width: 320px;
  }
  .whatsapp__toggle {
    width: 60px;
    height: 60px;
    font-size: 2.6rem;
  }
}
/* =====================================
   MOBILE
===================================== */
@media (max-width: 480px) {
  .whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
  .whatsapp__toggle svg {
    width: 51px;
    height: 47px;
    display: block;
  }
  .whatsapp__box {
    width: calc(96vw - 2rem);
    max-width: 320px;
    right: 0;
    bottom: 75px;
    border-radius: 9px;
  }
  .whatsapp__header {
    padding: 1.2rem;
  }
  .whatsapp__header h3 {
    font-size: 1.6rem;
  }
  .whatsapp__body {
    padding: 1.5rem;
  }
  .whatsapp__body input,
  .whatsapp__body textarea {
    font-size: 1.4rem;
  }
  .whatsapp__toggle {
    width: 51px;
    height: 51px;
    font-size: 2.4rem;
  }
  p {
    color: #000000;
    font-size: 1.2rem;
  }
  .whatsapp__bubble {
    right: 61px;
  }
}
.claims {
  padding: 10rem 0;
  background: #f8fafc;
}

.claims__header {
  text-align: center;
  margin-bottom: 4rem;
}
.claims__header h1 {
  font-size: 3.4rem;
  color: #07122b;
  margin-bottom: 1rem;
}
.claims__header p {
  font-size: 1.7rem;
  color: #64748b;
}

.claims__form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.claims__group {
  margin-bottom: 2rem;
}
.claims__group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #07122b;
  font-size: 1.4rem;
}
.claims__group input,
.claims__group textarea {
  width: 100%;
  border: 1px solid #dbe3eb;
  border-radius: 1rem;
  padding: 1.4rem;
  font-size: 1.5rem;
  outline: none;
}
.claims__group textarea {
  resize: vertical;
}

.claims__btn {
  border: none;
  background: linear-gradient(90deg, #00c6c6, #0077b6);
  color: #fff;
  padding: 1.4rem 2.5rem;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.claims__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .claims__form {
    padding: 2rem;
  }
  .claims__header h1 {
    font-size: 2.8rem;
  }
}
.politicas {
  padding: 8rem 0;
  background: #f8fafc;
}

.politicas .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   HEADER
========================= */
.politicas__header {
  text-align: center;
  margin-bottom: 5rem;
}

.politicas__header h1 {
  font-size: 4rem;
  color: #07122b;
  margin-bottom: 2rem;
  font-weight: 700;
}

.politicas__header p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #4b5563;
}

/* =========================
   CONTENT
========================= */
.politicas__content {
  background: #fff;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.politicas__content h2 {
  font-size: 2.2rem;
  color: #07122b;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.politicas__content h2:first-child {
  margin-top: 0;
}

.politicas__content p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #4b5563;
}

.politicas__content ul {
  margin: 1.5rem 0 2rem 2rem;
}

.politicas__content li {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .politicas {
    padding: 6rem 0;
  }
  .politicas__header {
    margin-bottom: 4rem;
  }
  .politicas__header h1 {
    font-size: 3rem;
  }
  .politicas__header p {
    font-size: 1.6rem;
  }
  .politicas__content {
    padding: 2.5rem;
  }
  .politicas__content h2 {
    font-size: 2rem;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .politicas .container {
    max-width: 100rem;
    padding: 0 1rem;
    width: 100%;
  }
  .politicas {
    padding: 5rem 0;
  }
  .politicas__header h1 {
    font-size: 2.6rem;
  }
  .politicas__header p {
    font-size: 1.5rem;
  }
  .politicas__content {
    padding: 2rem;
    border-radius: 1.5rem;
  }
  .politicas__content h2 {
    font-size: 1.8rem;
  }
  .politicas__content p,
  .politicas__content li {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/* ==========================================================
   WRAPPER
========================================================== */
.specialties__top-wrapper {
  position: relative;
  width: 100%;
}

/* ==========================================================
   GRID DESKTOP
========================================================== */
.specialties__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ==========================================================
   CARD
========================================================== */
.specialties__top-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  min-height: 235px;
  border-top: 4px solid #00a6a6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 1rem;
}

.specialties__top-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================
   FEATURED
========================================================== */
.specialties__top-card--featured {
  border-top: 4px solid #0087b8;
}

/* ==========================================================
   TITLES
========================================================== */
.specialties__top-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d2b3f;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* ==========================================================
   TEXT
========================================================== */
.specialties__top-card p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #667085;
  margin-bottom: 0rem;
}

/* ==========================================================
   BUTTON
========================================================== */
.specialties__top-card .btn-primary {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #10b4b4, #0a71b3);
  color: #ffffff;
}

/* ==========================================================
   ARROW SPECIALTIES
========================================================== */
.specialties__arrow {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a6a6;
  transition: 0.3s ease;
}

.specialties__arrow:hover {
  transform: translateY(4px);
}

.specialties__arrow svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================
   NAV BUTTONS
========================================================== */
.specialties__nav {
  display: none;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #00a6a6;
  color: #ffffff;
  cursor: pointer;
  z-index: 20;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.specialties__nav:hover {
  background: #008080;
}

.specialties__nav svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================
   SLIDER
========================================================== */
@media (max-width: 1011px) {
  .specialties__nav {
    display: flex;
  }
  .specialties__top {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .specialties__top::-webkit-scrollbar {
    display: none;
  }
  .specialties__top-card {
    flex: 0 0 calc(50% - 1rem);
    scroll-snap-align: start;
  }
}
/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 768px) {
  .specialties__top-card {
    flex: 0 0 100%;
  }
  .specialties__nav {
    width: 42px;
    height: 42px;
  }
}
.btn-espe {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12rem;
  flex-direction: row-reverse;
  position: relative;
  top: 34px;
  margin-bottom: 7rem;
}

.archive {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.archive__hero {
  position: relative;
  text-align: center;
  padding: 4rem 0;
}
.archive__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 95, 157, 0.08), transparent 70%);
  z-index: -1;
}
.archive__hero h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 900;
  color: #0f172a;
}
.archive__hero p {
  max-width: 75rem;
  margin: 0 auto;
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  line-height: 1.9;
  color: #64748b;
}

.archive-container {
  width: min(97%, 140rem);
}

.archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.archive-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}
.archive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f5f9d, #2da7ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}
.archive-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.archive-card:hover::before {
  transform: scaleX(1);
}
.archive-card:hover img {
  transform: scale(1.08);
}

.archive-card__image {
  overflow: hidden;
}
.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.archive-card__body {
  padding: 1.2rem 3rem;
}

.archive-card__body h3 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.archive-card__body p {
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 1rem;
  min-height: 8rem;
  font-size: 1.6rem;
  text-align: justify;
  letter-spacing: -0.1px;
  hyphens: auto;
  word-break: break-word;
}

.archive-card__body .btn-outline {
  width: 100%;
  justify-content: center;
  transition: 0.3s ease;
}

.archive-card__body .btn-outline:hover {
  transform: translateY(-2px);
}

.archive__section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.archive__section-title span {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 99rem;
  background: rgba(15, 95, 157, 0.08);
  color: #0f5f9d;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.archive__section-title h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  color: #0f172a;
}

.archive__empty {
  text-align: center;
  padding: 8rem 2rem;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.archive__empty p {
  font-size: 1.8rem;
  color: #64748b;
}

@media (max-width: 1510px) {
  .archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1208px) {
  .archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 850px) {
  .archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .archive__hero {
    margin-bottom: 0rem;
  }
  .archive-card__body {
    padding: 1.4rem 2.4rem;
  }
  .archive-card__body p {
    font-size: 1.5rem;
  }
}
@media (max-width: 590px) {
  .archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 518px) {
  .archive-container {
    width: min(87%, 140rem);
  }
  .archive__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 408px) {
  .archive-container {
    width: min(87%, 140rem);
  }
}
@media (max-width: 363px) {
  .archive-container {
    width: min(97%, 140rem);
  }
  .archive-card__body {
    padding: 1.2rem 1.8rem;
  }
}
/* ==================================================
DETAIL
================================================== */
.detail {
  background: #07122b;
  color: white;
  overflow: hidden;
}

/* ==================================================
HEADINGS
================================================== */
.detail-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.detail-heading span {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #007bff;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  margin-bottom: 1rem;
}
.detail-heading h2 {
  color: #07122b;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
}

/* ==================================================
HERO
================================================== */
.detail-hero {
  padding: 8rem 0;
}

.container-dhero {
  width: min(92%, 123rem);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0rem;
  align-items: center;
}

.detail-hero__tag {
  display: inline-flex;
  padding: 0.8rem 1.8rem;
  border-radius: 999rem;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.15);
  color: #7dd3fc;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  margin-bottom: 2rem;
}

.detail-hero__content h1 {
  font-size: clamp(5rem, 5vw, 8rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  font-weight: 700;
}

.detail-hero__content p {
  max-width: 60rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  line-height: 1.9;
}

.detail-hero__image {
  display: flex;
  justify-content: center;
}

.detail-hero__image img {
  width: 100%;
  border-radius: 6px;
  max-width: 56rem;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.35));
}

/* ==================================================
TRATAMIENTOS
================================================== */
.detail-treatments {
  background-color: #fff;
  padding: 7rem 0;
}

.detail-heading .h-equip {
  color: #fff;
}

.detail-container {
  width: min(93%, 102rem);
}

.detail-treatments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  background: #07122b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}
.treatment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #38bdf8, #2563eb);
}
.treatment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.35);
  background: rgb(0, 0, 0);
}

/* ==================================================
EQUIPAMIENTO
================================================== */
.detail-equipment {
  padding: 7rem 0;
}

.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.equipment-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
}

.equipment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.35);
}

.equipment-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: 0.8s ease;
}

.equipment-card:hover img {
  transform: scale(1.05);
}

.equipment-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(7, 18, 43, 0.98), rgba(7, 18, 43, 0.4), transparent);
}

.equipment-card__overlay h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 1px #000000, 0 0 1px #000000, 0 0 1px rgba(0, 0, 0, 0.5);
}

.equipment-card__overlay p {
  font-size: 1.5rem;
  line-height: 1.8;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 1px #000000, 0 0 1px #000000, 0 0 1px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.equipment-controls {
  display: none;
}

.equipment-btn {
  border: none;
  cursor: pointer;
}

/* ==================================================
CTA
================================================== */
.detail-cta {
  padding: 0rem 0;
}

.detail-cta__box {
  padding: 5rem;
  text-align: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
}

.detail-cta__box span {
  display: inline-block;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.detail-cta__box h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
}

.detail-cta__box p {
  max-width: 60rem;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1.8rem;
}

/* ==================================================
RESPONSIVE
================================================== */
@media (max-width: 992px) {
  .detail-hero {
    padding: 4rem 0;
  }
  .detail-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .detail-hero__content p {
    padding: 0rem 1.3rem;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .detail-treatments__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 573px) {
  .detail-treatments__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .treatment-card {
    font-size: 1.7rem;
  }
}
@media (max-width: 810px) {
  .equipment-gallery {
    display: block;
  }
  .equipment-card {
    display: none;
  }
  .equipment-card.active {
    display: block;
  }
  .equipment-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  .equipment-btn {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: #0ea5e9;
    color: white;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .detail-hero {
    padding: 6rem 0;
  }
  .detail-treatments,
  .detail-equipment,
  .detail-cta {
    padding: 2rem 0;
  }
  .detail-heading {
    margin-bottom: 3rem;
  }
  .detail-cta__box {
    padding: 3rem 2rem;
  }
  .equipment-card img {
    height: 32rem;
  }
}
@media (max-width: 626px) {
  .container-dhero {
    width: min(100%, 140rem);
  }
}
@media (max-width: 599px) {
  .treatment-card {
    padding: 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .detail-hero__image img {
    border-radius: 0px;
  }
}
@media (max-width: 520px) {
  .detail-hero__content h1 {
    font-size: 4rem;
  }
  .detail-hero__content p {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .equipment-card__overlay {
    padding: 1.5rem 2rem;
  }
  .equipment-card__overlay h3 {
    margin-bottom: 0.5rem;
    line-height: 1.03;
  }
  .equipment-card__overlay p {
    line-height: 1.1;
  }
  .treatment-card {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    border-radius: 5px;
  }
  .equipment-card img {
    height: auto;
  }
  .detail-cta__box h2 {
    font-size: 3rem;
  }
  .detail-cta__box p {
    font-size: 1.5rem;
  }
  .equipment-btn {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 460px) {
  .detail-hero {
    padding: 4rem 0;
  }
}
@media (max-width: 416px) {
  .detail-treatments__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 290px) {
  .detail-treatments__grid {
    grid-template-columns: 1fr;
  }
}
.medical-articles {
  background: #07122b;
  padding: 10rem 0;
  overflow: hidden;
}

.medical-container {
  width: min(99%, 151rem);
}

.medical-articles__heading {
  text-align: center;
  max-width: 90rem;
  margin: 0 auto 6rem;
}

.medical-articles__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #60a5fa;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.medical-articles__heading h2 {
  color: white;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.medical-articles__heading p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  line-height: 1.8;
  max-width: 75rem;
  margin: 0 auto;
}

.medical-slider {
  overflow: hidden;
  touch-action: pan-y;
  position: relative;
  padding-top: 2rem;
}

.medical-slider__track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  will-change: transform;
}

.article-card {
  width: 38rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  transition: all 0.4s ease;
}
.article-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 167, 255, 0.4);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(45, 167, 255, 0.15);
}

.article-card:hover {
  transform: translateY(-12px);
}

.article-card__image {
  height: 24rem;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.article-card:hover img {
  transform: scale(1.08);
}

.article-card__content {
  padding: 1rem 2.5rem;
}

.article-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 99rem;
  background: rgba(7, 18, 43, 0.08);
  color: #07122b;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.article-card__content h3 {
  font-size: 2.3rem;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.article-card__content p {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.4;
  min-height: 10rem;
  text-align: justify;
  letter-spacing: -0.1px;
  hyphens: auto;
  word-break: break-word;
}

.btn-article {
  max-width: 213px;
  margin: 1rem auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .article-card {
    width: 34rem;
  }
}
@media (max-width: 992px) {
  .medical-articles {
    padding: 8rem 0;
  }
  .medical-slider__track {
    gap: 0.5rem;
    animation-duration: 30s;
  }
  .article-card {
    width: 32rem;
  }
  .article-card__content h3 {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .medical-articles {
    padding: 6rem 0;
  }
  .medical-articles__heading p {
    line-height: 1.4;
  }
  .medical-articles__heading {
    margin-bottom: 4rem;
  }
  .medical-slider__track {
    animation-duration: 22s;
  }
  .article-card {
    width: 28rem;
  }
  .article-card__image {
    height: 20rem;
  }
  .article-card__content {
    padding: 1rem 2rem;
  }
  .article-card__content h3 {
    font-size: 1.9rem;
  }
  .article-card__content p {
    font-size: 1.5rem;
  }
}
@media (max-width: 478px) {
  .medical-articles__heading h2 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 1rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .article-card {
    width: 26rem;
  }
  .article-card__image {
    height: 18rem;
  }
  .article-card__content h3 {
    font-size: 1.7rem;
  }
  .article-card__content p {
    font-size: 1.45rem;
  }
  .article-card .btn-article {
    font-size: 1.4rem;
  }
}
/* trust */
.trust-section {
  padding: 12.5rem 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 35%), radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.05), transparent 35%), #07122b;
  overflow: hidden;
  color: white;
}

.trust-container {
  width: min(92%, 118rem);
}

.trust-section__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.trust-section__content {
  max-width: 60rem;
}

.trust-section__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #7dd3fc;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
}

.trust-section h2 {
  font-size: clamp(5.6rem, 3vw, 9rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: white;
}

.trust-section p {
  font-size: 2.6rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* ===========================
   ESTADÍSTICAS
=========================== */
.trust-section__stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* CARD PRINCIPAL */
.trust-stat--featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2.2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.trust-stat--featured:hover {
  transform: translateY(-4px);
}

.trust-stat--featured strong {
  display: block;
  font-size: clamp(3.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 0.6rem;
  color: white;
}

.trust-stat--featured span {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* BLOQUE INFERIOR */
.trust-section__stats-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.trust-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: 1.6rem;
  text-align: center;
  transition: 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.trust-stat strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
}

.trust-stat span {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1082px) {
  .trust-section h2 {
    font-size: clamp(4.6rem, 3vw, 9rem);
  }
  .trust-section p {
    font-size: 2.2rem;
  }
}
/* ===========================
   TABLET
=========================== */
@media (max-width: 992px) {
  .trust-section {
    padding: 7rem 0;
  }
  .trust-section__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trust-section__content {
    text-align: center;
    max-width: 100%;
  }
  .trust-section__stats {
    flex-direction: row;
    justify-content: center;
  }
  .trust-section h2 {
    font-size: 3rem;
  }
  .trust-section p {
    font-size: 1.5rem;
  }
}
/* ===========================
   MOBILE
=========================== */
@media (max-width: 520px) {
  .trust-section {
    padding: 5rem 0;
  }
  .trust-section__stats {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .trust-section h2 {
    font-size: 2.5rem;
  }
  .trust-section p {
    line-height: 1.5;
    font-size: 1.4rem;
  }
  .trust-stat--featured {
    padding: 1.8rem;
  }
  .trust-stat--featured strong {
    font-size: 3.5rem;
  }
  .trust-stat--featured span {
    font-size: 1rem;
  }
  .trust-section__stats-bottom {
    gap: 1rem;
  }
  .trust-stat {
    padding: 1.4rem;
  }
  .trust-stat strong {
    font-size: 2rem;
  }
  .trust-stat span {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=app.min.css.map */
