@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 6%, rgb(139, 181, 211) 100%);
  background-repeat: no-repeat;
  box-sizing: border-box;
}

header {
  width: 100%;
  background: rgb(1, 94, 148);
  color: #ffffff;
  padding: 20px 0;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.logo-text {
  font-weight: 600;
  font-size: 25px;
}

.navbar {
  display: flex;
}

.navbar a {
  margin-right: 50px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

.intro {
  margin-top: 100px;
  margin-bottom: 75px;
  display: flex;
}

.left,
.right {
  width: 50%;
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  margin-left: 250px;
  margin-right: 10px;
}

.name {
  color: rgb(1, 94, 148);
  font-size: 53px;
  margin-bottom: 0px;
}

.name_2 {
  color: rgb(1, 94, 148);
  font-size: 40px;
  margin-top: 0px;
}

.extra_desc {
  font-size: 18px;
}

.marcar {
  width: 280px;
  height: 60px;
  border: 2px solid white;
  border-radius: 25px;
  margin-right: 40px;
  margin-top: 40px;
  background-color: #339fd5;
  cursor: pointer;
  animation: moveUpDown2 1s ease-in-out infinite;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.marcar i {
  margin-left: 15px;
  border-radius: 50%;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.2);
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob {
  width: 500px;
  height: 500px;
  background-color: rgb(132, 180, 225);
  border-radius: 30% 70% 70% 30% / 48% 62% 38% 52%;
  animation: moveUpDown 1.5s ease-in-out infinite;
}

.inner-blob {
  width: 70%;
  height: 70%;
  background-color: rgb(82, 170, 229);
  border-radius: 30% 70% 70% 30% / 48% 62% 38% 52%;
  position: absolute;
  top: 35%;
  left: 25%;
  animation: moveUpDown 1.5s ease-in-out infinite;
}

.doctor-image {
  position: absolute;
}

.doctor-image img {
  width: 450px;
  height: auto;
  top: 39%;
  left: 55%;
  animation: moveUpDown 1.5s ease-in-out infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.see-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -30px;
  font-size: 20px;
}

.icons {
  margin-top: 5px;
  color: #4173b0;
}

.see-more i {
  margin-left: 10px;
  animation: moveUpDown2 1.5s ease-in-out infinite;
}

.terapia-title {
  font-size: 55px;
  color: rgb(1, 94, 148);
  margin-bottom: 30px;
  text-align: center;
  margin-top: 100px;
}

.terapia-content {
  text-align: left;
  margin: 100px 200px;
  font-size: 25px;
  line-height: 1.6;
}

.terapia-content strong {
  color: #1d5673;
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}

.services-title {
  font-size: 55px;
  color: rgb(1, 94, 148);
  margin-bottom: 100px;
}

.services-subtitle {
  font-size: 35px;
  color: rgb(1, 94, 148);
  margin-bottom: 50px;
}

.services-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.services-container_2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  height: 800px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transform: scale(1.02);
}

.service-desc {
  width: 80%;
  margin-top: 20px;
}

.service-desc h3 {
  color: rgb(1, 94, 148);
  font-size: 20px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.service-desc ul {
  margin-top: 40px;
  font-weight: 500;
}

.service-title {
  color: rgb(1, 94, 148);
  font-size: 25px;
  margin-bottom: 10px;
}

.service-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.services-container_2 .service {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: 600px;
}

.services-container_2 .service-image {
  width: 50%;
  height: 100%;
  padding: 25px;
  border-radius: 35px;
  box-sizing: border-box;
}

.services-container_2 .service-desc {
  width: 50%;
  padding: 40px;
}

.services-container_2 .service-title {
  font-size: 40px;
  color: rgb(1, 94, 148);
  margin-bottom: 50px;
}

.services-container_2 .service-text {
  font-size: 22px;
}

.empresas {
  margin-top: 140px;
}

.empresas-title {
  font-size: 55px;
  color: rgb(1, 94, 148);
  margin-bottom: 30px;
  text-align: center;
  padding-top: 40px;
}

.empresas-content {
  text-align: left;
  margin: 100px 200px;
  font-size: 25px;
  line-height: 1.6;
}

.empresas-content strong {
  color: #3c87ac;
}

.empresas-content li {
  margin-bottom: 20px;
}

.empresas-benefits {
  font-size: 25px;
}

.empresas-applications {
  font-size: 25px;
}

.contact {
  display: flex;
  margin-top: 245px;
  margin-bottom: 200px;
  width: 100%;
}

.left_3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.right_3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_3 {
  margin: 0 150px;
  margin-right: 0px;
}

.content_3 a {
  color: #339fd5;
}

.contact-title_3 {
  color: rgb(1, 94, 148);
  font-size: 55px;
}

.contact-subtitle {
  font-size: 30px;
  color: #3c87ac;
  margin: -40px 0 40px;
}

.contact-info_3 {
  font-size: 25px;
  margin: 10px 0;
}

.address_3 {
  line-height: 1.5;
  font-size: 19px;
  text-decoration: none;
}

.address_3::first-line {
  font-size: 25px;
}

.social_3 {
  margin-top: 20px;
}

.social_3 a {
  font-size: 30px;
  color: #339fd5;
  text-decoration: none;
  margin-right: 20px;
}

.mapa {
  border-radius: 10px;
  border: 4px solid rgb(53, 138, 183);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mapa:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgb(1, 94, 148);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  header {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .logo-container {
    flex-direction: column;
    justify-content: center;
  }

  .logo-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 20px;
    font-weight: 500;
  }

  .navbar {
    flex-direction: column;
    margin-top: 15px;
    width: 100%;
  }

  .navbar a {
    margin-right: 0;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border-top: 0.5px solid white;
  }

  .bottom {
    border-bottom: 0.5px solid white;
  }

  .intro {
    flex-direction: column;
    text-align: center;
    margin-top: 15px;
  }

  .left,
  .right {
    width: 100%;
  }

  .content {
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 110px;
  }

  .name {
    font-size: 30px;
  }

  .name_2 {
    font-size: 18px;
  }

  .marcar {
    font-size: 14px;
    padding: 10px 15px;
    margin-right: 0px;
    margin-top: 40px;
  }

  .blob {
    width: 300px;
    height: 300px;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
  }

  .inner-blob {
    width: 70%;
    height: 70%;
    top: 35%;
    left: 25%;
  }

  .doctor-image img {
    width: 250px;
  }

  .see-more {
    display: none;
  }

  .terapia-title {
    font-size: 40px;
    padding-top: 20px;
    margin-bottom: 20px;
    margin-top: 80px;
  }

  .terapia-content {
    margin: 50px 20px;
    font-size: 20px;
  }

  .terapia-description {
    text-align: justify;
  }

  .services-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
  }

  .services-subtitle {
    font-size: 25px;
    text-align: center;
  }

  .services-container,
  .services-container_2 {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .service {
    width: 90%;
    margin-bottom: 30px;
    margin-bottom: 50px;
  }

  .services-container_2 .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: 800px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  .services-container_2 .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .services-container_2 .service-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transform: scale(1.02);
    padding: 0px;
  }

  .services-container_2 .service-desc {
    width: 80%;
    height: 100%;
    margin-top: 0px;
  }

  .services-container_2 .service-title {
    color: rgb(1, 94, 148);
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .services-container_2 .service-text {
    font-size: 17px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
  }

  .empresas {
    margin-top: 70px;
    margin-bottom: 100px;
  }

  .empresas-title {
    font-size: 40px;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .empresas-content {
    margin: 50px 20px;
    font-size: 20px;
    line-height: 1.4;
  }

  .empresas-content li {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .empresas-description,
  .empresas-applications {
    text-align: justify;
  }

  .empresas-benefits,
  .empresas-applications-list {
    padding-left: 20px;
  }

  .empresas-content strong {
    color: #3c87ac;
  }

  .contact {
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .left_3,
  .right_3 {
    width: 100%;
    margin-bottom: 20px;
  }

  .left_3 {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .content_3 {
    margin: 0 30px;
  }

  .contact-title_3 {
    font-size: 33px;
  }

  .contact-subtitle {
    font-size: 20px;
    margin: -20px 0 20px;
  }

  .contact-info_3,
  .address_3 {
    font-size: 15px;
  }

  .social_3 {
    margin-left: 30px;
  }

  .social_3 a {
    font-size: 25px;
  }

  .map-container_3 {
    padding: 0px;
    margin: 0px;
    align-items: center;
    justify-content: center;
  }

  .mapa {
    width: 98%;
    height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 1550px) {
  header {
    padding: 15px 0;
  }

  .logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
  }

  .logo-text {
    font-weight: 600;
    font-size: 22px;
  }

  .intro {
    margin-top: 36px;
  }

  .navbar a {
    margin-right: 30px;
    font-size: 15px;
  }

  .content {
    margin-left: 20%;
  }

  .name {
    font-size: 43px;
  }

  .name_2 {
    font-size: 25px;
  }

  .extra_desc {
    font-size: 14px;
  }

  .marcar {
    height: 45px;
    margin-top: 20px;
    font-size: 13px;
  }

  .blob {
    width: 350px;
    height: 350px;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
  }

  .doctor-image img {
    width: 320px;
  }

  .terapia-content {
    margin: 50px 100px;
    font-size: 20px;
  }

  .services-title {
    font-size: 50px;
  }

  .service {
    width: 30%;
  }

  .services-container_2 .service {
    height: 500px;
  }

  .services-container_2 .service-title {
    font-size: 30px;
  }

  .services-container_2 .service-text {
    font-size: 20px;
  }

  .empresas {
    margin-top: 150px;
  }

  .empresas-title {
    font-size: 50px;
  }

  .empresas-content {
    margin: 100px 100px;
    font-size: 20px;
  }

  .empresas-benefits {
    font-size: 20px;
  }

  .empresas-applications {
    font-size: 20px;
  }

  .contact {
    margin-top: 150px;
    margin-bottom: 100px;
  }

  .left_3{
    width: 70%;
    margin-right: 100px;
  }

  .content_3 {
    margin-left: 100px;
  }

  .contact-title_3 {
    font-size: 40px;
  }

  .contact-subtitle {
    font-size: 20px;
    margin: -30px 0 40px;
  }

  .contact-info_3 {
    font-size: 20px;
  }

  .address_3 {
    font-size: 17px;
  }

  .social_3 a {
    font-size: 30px;
  }

  .mapa {
    width: 350px;
    height: 300px;
    margin-right: 100px;
  }
}