:root {
  --azulfuerte: #2A4C59;
  --azulelectric: #0A7B91;
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5c5c5c;
}

/**** CONTENIDO GENERAL */

a {
  appearance: none;
  outline: none;
  text-decoration: none;
}

.seccion {
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}

.titulo-seccion {
  width: 90%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: white;
  font-family: 'Ubuntu', sans-serif;
  z-index: 2;
}

.desc-seccion {
  width: 90%;
  text-align: center;
  font-size: 15px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
  z-index: 2;
}

.contenedor-titulos-seccion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.subtitulo-seccion {
  /* position: absolute;
  top: 10%;
  left: 10%; */
  width: 210px;
  height: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.linea-subtitulo-seccion {
  width: 40px;
  height: 2px;
  background-color: var(--azulelectric);
}

.texto-subtitulo-seccion {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--azulelectric);
}

.sombra {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: black;
  opacity: 0.7;
  z-index: 7;
  display: none;
}

.sombra.active {
  display: block;
}

.hide {
  display: none;
}

.sombra-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contenedor-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.contenedor-wrap-reverse {
  width: 100%;
  display: flex;
  flex-wrap: wrap-reverse;
  align-content: center;
  justify-content: center;
}

/**** HEART RATE */
.contenedor-heart-rate {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  opacity: 1;
  animation: hideHeartRate 1s 3s forwards;
  -webkit-animation: hideHeartRate 1s 3s forwards;
}

@keyframes hideHeartRate {
  from { opacity: 1; }
  to { opacity: 0; }
}

.heart-rate {
  width: 150px;
  height: 73px;
  position: relative;
  margin: 20px auto;
}

.fade-in {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  top: 0;
  right: 0;
  animation: heartRateIn 2.5s linear infinite;
}

.fade-out {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  animation: heartRateOut 2.5s linear infinite;
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
}

@keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}

.banner-redes {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: var(--azulfuerte);
  z-index: 5;
}

.elemento-br {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  display: flex;
}

.elemento-br i {
  margin-right: 5px;
}

.redes-br {
  display: flex;
}

.red-br {
  font-size: 22px;
  margin-right: 15px;
  color: white;
}

@media (max-width: 500px) {
  #ubiBR {
    display: none;
  }

  .red-br {
    font-size: 19px;
  }
}

.nav {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
  box-shadow: 0px 0px 4px 2px #cecece;
  z-index: 4;
  background-color: white;
}

.nav-scroll {
  position: fixed;
  top: 0;
  left: 0;
}

.nav-logo-icon {
  height: 80px;
}

.nav-logo-icon img {
  height: 100%;
}

.nav-ops {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-op {
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  color: #5b5b5b;
}

.nav-ham {
  font-size: 22px;
  color: var(--azulfuerte);
  cursor: pointer;
  display: none;
}

.nav-mobile {
  z-index: 8;
  position: fixed;
  left: -100%;
  width: 80%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: white;
  transition: 1s ease-in-out;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -ms-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
}

.nav-mobile.active {
  left: 0;
}

.close-nav {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--azulelectric);
  color: white;
  font-size: 15px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  cursor: pointer;
}

.nav-mobile-ops {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.nav-mobile-op {
  width: 70%;
  margin: 8px auto;
  font-size: 20px;
  color: #5b5b5b;
  font-family: 'Ubuntu', sans-serif;
}

.separador-nav {
  width: 70%;
  margin: 5px auto;
  border: none;
  height: 1px;
  background: #cecece;
}

@media (max-width: 500px) {
  .nav-ham {
    display: block;
  }

  .nav-ops {
    display: none;
  }
}

.portada {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/**** ACERCA DE MI */
.img-acerca {
  width: 90%;
  max-width: 400px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.img-acerca img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.textos-acerca {
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}

.titulo-acerca {
  font-family: 'Ubuntu', sans-serif;
  font-size: 30px;
  color: var(--azulelectric);
}

.info-acerca {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #5b5b5b;
}

.logos-acerca {
  width: 90%;
  display: flex;
  align-items: center;
}

.logo-acerca img {
  width: 100%;
}

/**** ESPECIALIDADES */
.sombra-seccion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--azulfuerte);
  opacity: 0.95;
}

.contenedor-especialidades {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  z-index: 2;
}

.especialidad {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 1s ease;
  -webkit-transition: transform 1s ease;
  -moz-transition: transform 1s ease;
  -ms-transition: transform 1s ease;
  -o-transition: transform 1s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.especialidad:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 500px) {
  .especialidad {
    height: 300px;
    margin: 10px auto;
  }
}

.texto-especialidad {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: white;
  z-index: 2;
}

/**** EQUIPOS */
.img-equipo {
  width: 90%;
  max-width: 400px;
}

.img-equipo img {
  width: 100%;
}

.textos-equipo {
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
}

.titulo-equipo {
  font-family: 'Ubuntu', sans-serif;
  font-size: 30px;
  color: var(--azulfuerte);
}

.desc-equipo {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #5b5b5b;
  text-align: justify;
}

/**** CONTACTO */

.mapa-contacto {
  width: 90%;
  max-width: 500px;
  height: 500px;
  margin: 10px auto;
  z-index: 2;
}

@media (max-width: 900px) {
  .mapa-contacto {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

.mapa-contacto iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.formulario-contacto {
  width: 90%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.leyenda-formulario-contacto {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 6px;
  margin-top: 5px;
  font-size: 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.campo-formulario-contacto {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 5px;
  border: none;
  outline: none;
  appearance: none;
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #5b5b5b;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.textarea-formulario-contacto {
  width: 100%;
  height: 164px;
  margin: 0 auto;
  border: none;
  outline: none;
  appearance: none;
  resize: none;
  background-color: #fff;
  padding-left: 10px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #5b5b5b;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn-formulario-contacto {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--azulfuerte);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background-color: #000;
  z-index: 2;
  transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  -moz-transition: ease-in-out 1s;
  -ms-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto.active {
  display: flex;
}

.logo-panel-mensaje-contacto {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.texto-panel-mensaje-contacto {
  width: auto;
  height: auto;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/**** FOOTER */
footer {
  width: 100%;
  min-height: 400px;
  background-color: var(--azulfuerte);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  position: relative;
}

@media (max-width: 500px) {
  footer {
    padding: 50px 0;
  }
}

.footer-column {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: center;
}

.logo-footer {
  width: 300px;
}

.logo-footer img {
  width: 100%;
  fill: white;
}

.titulo-footer {
  width: 100%;
  text-align: center;
  font-size: 30px;
  color: white;
  font-family: 'Ubuntu', sans-serif;
}

address {
  font-style: normal;
}

.texto-footer {
  width: 100%;
  font-size: 17px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.texto-footer a {
  display: contents;
  appearance: none;
  color: white;
}

.redes-sociales {
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.red-social {
  font-size: 24px;
  color: white;
}

.red-social a {
  appearance: none;
  color: white;
  display: contents;
}

.footer-derechos {
  width: 100%;
  min-height: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
  background-color: var(--azulelectric);
}

.texto-footer-derechos {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.texto-footer-derechos a {
  display: contents;
  appearance: none;
  color: white;
}

.texto-footer-derechos img {
  width: 100px;
  margin-left: 10px;
}