html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo img {
  height: 100px;
}

.inner {
  max-width: 1680px;
  width: 90%;
  margin: 0 auto;
}

/* HEADER */

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 60px 0 0 0;
  z-index: 10;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 40px;
  font-size: 15px;
  font-weight: bold;
}

/* HERO */

.hero {
  height: 820px;
  background:
    linear-gradient(90deg,
      rgba(51, 51, 51, 0.75) 0%,
      rgba(51, 51, 51, 0.45) 40%,
      rgba(51, 51, 51, 0) 70%),
    url('../assets/fondo-hero.jpg') center top no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-content {
  margin-left: 160px;
}

.hero h1 {
  font-size: 110px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.05;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.75);
}

/* PROGRAMA */

.programa {
  background: #f2f2f2;
  padding: 100px 0;
}

.programa h2 {
  font-size: 72px;
  font-weight: bold;
  color: #0093ac;
  margin-bottom: 70px;
}

.cards {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card {
  position: relative;
  border: 1px solid #0093ac;
  border-radius: 28px;
  padding: 30px 30px 30px 50px;
  margin-bottom: 40px;

  flex: 1;
  /* CLAVE */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card:last-child {
  margin-bottom: 0;
}

.card::before {
  content: "";
  position: absolute;
  left: -3px;
  /* lo saca un poco hacia afuera */
  top: 25%;
  transform: translateY(-50%);
  width: 20px;
  height: 50px;
  background: #0093ac;
  border-radius: 4px;
}

.card h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.card p {
  font-size: 22px;
  line-height: 1.6;
}


/* ================= COMO ACCEDER ================= */

.como-acceder {
  background: url('../assets/fondo-como-acceder.jpg') center no-repeat;
  background-size: cover;
  padding: 120px 0;
  color: #ffffff;
}

.como-acceder-wrapper,
.confidencialidad-wrapper,
.area-wrapper,
.soporte-wrapper,
.soporte-banner-wrapper {
  margin-left: 160px;
  margin-right: 160px;
}

.texto-acceso {
  font-size: 30px;
  line-height: 1.5;
  max-width: 1200px;
  margin-bottom: 40px;
}

.iconos-acceso {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.icono-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icono-item span {
  font-size: 30px;
  font-weight: bold;
}

.icono img {
  width: 60px;
}

.aclaracion {
  font-size: 28px;
  margin-top: 80px;
  max-width: 1200px;
}

.nota {
  font-size: 18px;
  margin-top: 30px;
  max-width: 1100px;
  opacity: 0.9;
  font-style: italic;
}



/* ================= CONFIDENCIALIDAD ================= */

.confidencialidad {
  padding: 120px 0;
  background: #f2f2f2;
}

.confidencialidad-wrapper {
  margin-left: 80px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 100px;
}

.confidencialidad-icono img {
  width: 170px;
}

.confidencialidad-texto {
  max-width: 60%;
}

.confidencialidad-texto h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

.confidencialidad-texto p {
  font-size: 26px;
  line-height: 1.6;
}

/* ================= AREA TERAPEUTICA ================= */

.area {
  padding: 160px 0;
  background: #ffffff;
}

.area-wrapper {
  margin-left: 160px;
  margin-right: 160px;
}

.area h2 {
  font-size: 64px;
  font-weight: bold;
  color: #0093ac;
  margin-bottom: 40px;
}

.subtitulo-area {
  font-size: 32px;
  font-weight: bold;
  color: #0093ac;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.barra-terapeutica {
  height: 56px;
  background: #0093ac;
  display: flex;
  align-items: center;
  padding-left: 25px;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 60px;
}

.texto-area {
  font-size: 28px;
  line-height: 1.6;
  max-width: 1400px;
}

/* ================= SOPORTE BANNER ================= */

.soporte-banner {
  height: 320px;
  background: url('../assets/fondo-servicio.jpg') center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.soporte-banner-wrapper {
  margin-left: 160px;
  margin-right: 160px;
}

.soporte-banner h2 {
  font-size: 84px;
  font-weight: bold;
  color: #ffffff;
}

/* ================= SOPORTE CONTENIDO ================= */

.soporte-contenido {
  background: #f2f2f2;
  padding: 140px 0;
}

.soporte-wrapper {
  margin-left: 160px;
  margin-right: 160px;
}

.soporte-items {
  display: flex;
  justify-content: space-between;
}

.item {
  width: 30%;
  text-align: center;
}

.circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  width: 120px;
}

.item p {
  font-size: 26px;
}

/* CONTACTO */

.contacto {
  background: url('../assets/fondo-contacto.jpg') center no-repeat;
  background-size: cover;
  padding: 150px 0 100px 0;
  text-align: center;
}

.contacto h2 {
  font-size: 52px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 50px;
}

.form-wrapper {
  width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.15);
}

.formulario {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formulario input {
  width: 48%;
  height: 70px;
  margin-bottom: 30px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid #dddddd;
  font-size: 16px;
}

.formulario button {
  width: 100%;
  height: 70px;
  background: #0093ac;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  background: #f2f2f2;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */


/* DESKTOP GRANDE */

@media (max-width: 1600px) {

  .inner {
    width: 90%;
  }

}


/* ================= TABLET ================= */

@media (max-width: 1200px) {

  .header .inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .menu a {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 14px;
  }

  .hero-content {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .programa h2,
  .area h2,
  .soporte-banner h2 {
    font-size: 52px;
  }

  .texto-acceso,
  .texto-area {
    font-size: 22px;
  }

  .card p {
    font-size: 20px;
  }

  .como-acceder-wrapper,
  .confidencialidad-wrapper,
  .area-wrapper,
  .soporte-wrapper,
  .soporte-banner-wrapper {
    margin-left: 40px;
    margin-right: 40px;
  }

  .form-wrapper {
    width: auto;
    margin-left: 40px;
    margin-right: 40px;
  }

  .cards,
  .soporte-items,
  .iconos-acceso {
    flex-direction: column;
    gap: 40px;
  }

  .item {
    width: 100%;
  }

  .confidencialidad-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .confidencialidad-texto {
    max-width: 100%;
  }

}



/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .header {
    padding-top: 20px;
  }

  .header .inner {
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 0;
  }

  .menu a {
    margin: 0;
    font-size: 13px;
    text-align: center;
  }

  .hero {
    height: auto;
    padding: 240px 0 120px 0;
  }

  .hero-content {
    margin-left: 25px;
    margin-right: 25px;
    width: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .programa h2,
  .area h2,
  .soporte-banner h2 {
    font-size: 36px;
  }

  .subtitulo-area {
    font-size: 24px;
  }

  .barra-terapeutica {
    font-size: 18px;
    height: auto;
    padding: 15px;
  }

  .confidencialidad-texto h3 {
    font-size: 28px;
  }

  .confidencialidad-texto p {
    font-size: 20px;
  }

  .texto-acceso,
  .texto-area {
    font-size: 18px;
  }

  .card h3 {
    font-size: 24px;
  }

  .card p {
    font-size: 18px;
  }

  .icono-item {
    flex-direction: column;
    text-align: center;
  }

  .icono-item span {
    font-size: 20px;
    word-break: break-word;
  }

  .circle {
    width: 160px;
    height: 160px;
  }

  .circle img {
    width: 80px;
  }

  .como-acceder-wrapper,
  .confidencialidad-wrapper,
  .area-wrapper,
  .soporte-wrapper,
  .soporte-banner-wrapper {
    margin-left: 25px;
    margin-right: 25px;
  }

  .form-wrapper {
    width: auto;
    margin-left: 25px;
    margin-right: 25px;
    padding: 40px 20px;
  }

  .formulario input {
    width: 100%;
  }

  .aclaracion {
    font-size: 20px;
    margin-top: 40px;
  }

}

/* MOBILE CHICO */

@media (max-width: 480px) {

  .logo img {
    height: 70px;
  }

  .header {
    padding-top: 15px;
  }

  .menu a {
  display:none;
}

  .hero {
    padding: 160px 50px 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .programa h2,
  .area h2,
  .soporte-banner h2 {
    font-size: 28px;
  }

  .subtitulo-area {
    font-size: 20px;
  }

  .barra-terapeutica {
    font-size: 16px;
  }

  .cards {
    gap: 20px;
  }

  .card {
    padding: 20px 20px 20px 30px;
  }

  .como-acceder-wrapper,
  .confidencialidad-wrapper,
  .area-wrapper,
  .soporte-wrapper,
  .soporte-banner-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }

  .form-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 10px;
  }

  .hero-content {
    margin-left: 10px;
    margin-right: 10px;
  }

}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;

  opacity: 1;
  transform: none;

  transition: all .3s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float img {
  width: 80px;
  height: auto;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}