/* Start custom CSS for html, class: .elementor-element-4816fdd */.trat-hero,
.trat-intro,
.trat-grid-section,
.trat-cta,
.ms-header {
  font-family: 'Inter', sans-serif;
}

/* MENÚ RESPONSIVE */

.ms-header {
  width: min(94%, 1680px);
  margin: 0 auto;
  padding: 16px 28px;
  border-radius: 70px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,74,130,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  box-sizing: border-box;
}

.ms-logo {
  width: 104px;
  height: 104px;
  min-width: 104px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(5,201,245,.22);
}

.ms-logo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.ms-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 38px);
  flex: 1;
  white-space: nowrap;
}

.ms-nav a {
  color: #052f57;
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
}

.ms-btn,
.ms-mobile-btn {
  padding: 20px 38px;
  border-radius: 999px;
  background: linear-gradient(90deg,#05c9f5,#0076c8);
  color: #fff !important;
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(0,159,227,.34);
  animation: tratBtnGlow 2.6s ease-in-out infinite;
}

.ms-mobile-btn {
  display: none;
}

.ms-menu-toggle {
  display: none;
}

.ms-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg,#05c9f5,#0076c8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ms-burger span {
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
}

/* HERO */

.trat-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 230px 7% 100px;
  background: #eaf6ff;
}

.trat-bg {
  position: absolute;
  inset: 0;
  background-image: url("URL_IMAGEN_FONDO_TRATAMIENTOS");
  background-size: cover;
  background-position: center right;
  transform: scale(1.08);
  animation: tratBgMove 18s ease-in-out infinite alternate;
  z-index: 0;
}

.trat-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(5,201,245,.34), transparent 34%),
    linear-gradient(90deg, rgba(234,246,255,.98) 0%, rgba(234,246,255,.90) 45%, rgba(234,246,255,.58) 100%);
  z-index: 1;
}

.trat-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
}

.trat-kicker {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 26px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #0069af;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,159,227,.22);
  box-shadow: 0 12px 28px rgba(0,117,190,.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1.4;
}

.trat-content h1,
.trat-intro h2,
.trat-cta h2 {
  font-family: 'Archivo Black', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  color: #052f57;
}

.trat-content h1 {
  font-size: clamp(54px, 8.8vw, 125px);
  line-height: .86;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.trat-content p {
  max-width: 680px;
  color: #35526b;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.trat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #05c9f5, #0076c8);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(5,201,245,.34);
  animation: tratBtnGlow 2.6s ease-in-out infinite;
  transition: .35s ease;
}

.trat-btn:hover {
  transform: translateY(-5px) scale(1.04);
  color: #fff;
}

/* INTRO */

.trat-intro {
  padding: 110px 7% 40px;
  background: #ffffff;
  color: #052f57;
}

.trat-intro h2 {
  max-width: 980px;
  font-size: clamp(48px, 7vw, 105px);
  line-height: .86;
  letter-spacing: -5px;
  margin-bottom: 28px;
}

.trat-intro p {
  max-width: 700px;
  color: #4c6275;
  font-size: 19px;
  line-height: 1.8;
}

/* GRID */

.trat-grid-section {
  padding: 70px 7% 120px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.trat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trat-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(0,117,190,.12);
  box-shadow: 0 25px 70px rgba(0,74,130,.10);
  overflow: hidden;
  transition: .35s ease;
}

.trat-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,201,245,.22), transparent 70%);
}

.trat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 95px rgba(0,117,190,.18);
}

.trat-card.featured {
  background: linear-gradient(135deg, #052f57, #0076c8);
  color: #fff;
}

.trat-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #05c9f5, #0076c8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,159,227,.28);
  animation: tratIconFloat 3.5s ease-in-out infinite;
}

.trat-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 24px;
  color: #0076c8;
  font-size: 14px;
  font-weight: 900;
}

.trat-card.featured span {
  color: #86e7ff;
}

.trat-card h3 {
  position: relative;
  z-index: 2;
  color: #052f57;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.trat-card.featured h3 {
  color: #fff;
}

.trat-card p {
  position: relative;
  z-index: 2;
  color: #5c7184;
  font-size: 15px;
  line-height: 1.75;
}

.trat-card.featured p {
  color: rgba(255,255,255,.78);
}

/* CTA */

.trat-cta {
  padding: 120px 7%;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(5,201,245,.24), transparent 35%),
    linear-gradient(135deg, #eaf6ff, #ffffff);
  color: #052f57;
}

.trat-cta h2 {
  max-width: 980px;
  margin: 0 auto 28px;
  font-size: clamp(48px, 7vw, 105px);
  line-height: .86;
  letter-spacing: -5px;
}

.trat-cta p {
  max-width: 670px;
  margin: 0 auto 36px;
  color: #4c6275;
  font-size: 19px;
  line-height: 1.8;
}

/* ANIMACIONES */

@keyframes tratBgMove {
  0% { transform: scale(1.08) translateX(0); }
  100% { transform: scale(1.15) translateX(-18px); }
}

@keyframes tratBtnGlow {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 20px 50px rgba(5,201,245,.34);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(5,201,245,.62), 0 28px 60px rgba(0,159,227,.48);
  }
}

@keyframes tratIconFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* RESPONSIVE */

@media(max-width: 1200px) {
  .ms-header {
    width: calc(100% - 32px);
    padding: 14px 20px;
  }

  .ms-logo {
    width: 82px;
    height: 82px;
    min-width: 82px;
  }

  .ms-nav {
    gap: 18px;
  }

  .ms-btn {
    padding: 16px 24px;
  }

  .trat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 1024px) {
  .ms-burger {
    display: flex;
    order: 3;
  }

  .ms-btn {
    display: none;
  }

  .ms-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 25px 70px rgba(0,74,130,.18);
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .3s ease;
    white-space: normal;
  }

  .ms-menu-toggle:checked ~ .ms-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .ms-mobile-btn {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .trat-hero {
    min-height: 88vh;
    padding: 180px 22px 80px;
  }

  .trat-bg {
    background-position: center;
  }

  .trat-content h1 {
    font-size: 48px !important;
    line-height: .88 !important;
    letter-spacing: -1.8px !important;
  }

  .trat-kicker {
    font-size: 11px;
    padding: 10px 16px;
  }

  .trat-content p,
  .trat-intro p,
  .trat-cta p {
    font-size: 16px;
  }

  .trat-btn {
    width: 100%;
  }

  .trat-intro,
  .trat-grid-section,
  .trat-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .trat-intro h2,
  .trat-cta h2 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .trat-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 640px) {
  .ms-header {
    width: calc(100% - 24px);
    top: 12px;
    padding: 10px 14px;
    border-radius: 42px;
  }

  .ms-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  .ms-burger {
    width: 44px;
    height: 44px;
  }

  .ms-nav {
    padding: 24px;
  }

  .ms-nav a {
    font-size: 16px;
  }

  .ms-mobile-btn {
    width: 100%;
    padding: 16px 22px;
  }

  .trat-hero {
    min-height: 100svh;
    padding: 135px 22px 70px;
  }

  .trat-content h1 {
    font-size: 44px !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-182c1b7d */.location-section {
  padding: 120px 7%;
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 60%, #f5fbff 100%);
  color: #052f57;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.location-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.location-content p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: #4c6275;
  margin-bottom: 34px;
}

.location-info {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.location-info div {
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0,117,190,.12);
  box-shadow: 0 20px 55px rgba(0,74,130,.10);
}

.location-info strong {
  display: block;
  margin-bottom: 8px;
  color: #0076c8;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-info span {
  color: #052f57;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

.location-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.location-btn,
.location-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 34px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 900;
  transition: .3s ease;
}

.location-btn {
  color: #fff;
  background: linear-gradient(90deg, #05c9f5, #0076c8);
  box-shadow: 0 18px 42px rgba(0,159,227,.34);
  animation: buttonGlow 2.6s ease-in-out infinite;
}

.location-btn:hover {
  transform: translateY(-5px) scale(1.04);
}

.location-btn-outline {
  color: #053a63;
  background: #ffffff;
  border: 1px solid rgba(0,117,190,.22);
}

.location-btn-outline:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,74,130,.12);
}

.map-wrapper {
  height: 520px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0,74,130,.18);
  border: 1px solid rgba(0,117,190,.14);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media(max-width: 1100px) {
  .location-section {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 640px) {
  .location-section {
    padding: 85px 22px;
    gap: 42px;
  }

  .location-content h2 {
    font-size: 40px;
    letter-spacing: -1.3px;
  }

  .location-content p {
    font-size: 16px;
  }

  .location-buttons {
    flex-direction: column;
  }

  .location-btn,
  .location-btn-outline {
    width: 100%;
  }

  .map-wrapper {
    height: 360px;
    border-radius: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-404e9060 */.kbu-footer{
  position:relative;
  padding:30px 0;
  background:
    linear-gradient(180deg, #040611 0%, #02030a 100%);
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  overflow:hidden;
}

.kbu-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(93,215,255,.12), transparent 60%);
  pointer-events:none;
}

.kbu-footer-container{
  position:relative;
  z-index:2;
  width:min(100%, 1100px);
  margin:0 auto;
  padding:0 20px;
}

.kbu-footer-text{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#9fb7d6;
}

.kbu-footer-text strong{
  color:#ffffff;
  text-shadow:0 0 10px rgba(93,215,255,.3);
}

.kbu-footer-brand{
  color:#5dd7ff;
  font-weight:900;
  text-shadow:
    0 0 8px rgba(93,215,255,.6),
    0 0 18px rgba(47,123,255,.4);
}

.kbu-footer a{
  color:#9ef0ff;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.kbu-footer a:hover{
  color:#ffffff;
  text-shadow:
    0 0 10px rgba(93,215,255,.6),
    0 0 25px rgba(47,123,255,.4);
}/* End custom CSS */