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

:root {
  --green-gradient-start: #90ea66;
  --green-gradient-end: #4ba25e;
  --main-text-color: #29442a;
  --accent-color: #8ad0b3;
}

body {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

/* ----- HEADER STYLES ----- */

.contenedor {
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  margin: auto;
  padding: 60px 0;
}

.header {
  height: 100vh;
  /* 02 */
  background-image: linear-gradient(
      to top,
      rgba(142, 253, 169, 0.486) 0%,
      hsla(138, 68%, 79%, 0.714) 100%
    ),
    url("../assets/images/Principales/woman.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#header-btn-cont {
  display: flex;
  gap: 2.1rem;
  padding-bottom: 20px;
}

.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  color: var(--main-text-color);
  margin-top: 10rem;
}

.titulo {
  font-size: 60px;
  margin-bottom: 0.4rem;
}

.copy {
  font-weight: 300;
  font-size: 25px;
}

.neurozen-logo {
  object-fit: contain;
  width: 90px;
  margin: 30px;
}

.flag {
  object-fit: contain;
  width: 48px;
  height: 32px;
}

.imgs-and-switch-lang-btn-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.switch-and-menu-icon-cont {
  display: flex;
  flex-direction: row;
  background-color: #357039;
}

#switch-language {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 38px;
  right: 90px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* ----- MENU STYLES ----- */

.hamburger-icon {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #357039;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.menu {
  position: fixed;
  top: 0;
  width: 20vw;
  height: 100%;
  background-image: linear-gradient(
    135deg,
    var(--green-gradient-start) 0%,
    var(--green-gradient-end) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  right: 0;
  transform: translateX(110%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.menu_link {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.menu_link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: #fff;
  bottom: -2px;
  left: 0;
}

.menu_link:hover::after {
  width: 100%;
  transition: 0.5s all;
}

.spread {
  transform: translateX(0);
}

/* ----- MAIN STYLES ----- */
/* ----- FIRST SECTION STYLES ----- */

.subtitulo {
  color: #328a27;
  font-size: 60px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 15px;
}

.contenedor-servicio {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.contenedor-servicio img {
  width: 40%;
  max-width: 300px;
}

.checklist-servicio {
  display: flex;
  flex-direction: column;
  width: 45%;
  list-style: none;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.n-service {
  margin-bottom: 7px;
  color: var(--accent-color);
}

.number {
  display: inline-block;
  /* 02 */
  background-image: linear-gradient(to top, #44b44d 0%, #c2fbce 100%);
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 700;
}

/* ----- SECOND SECTION STYLES ----- */

.gallery {
  background: #e8fae6;
}

.contenedor-galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 30px;
}

.img-galeria {
  width: 30%;
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.imagen-light {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.534);
  transform: translate(100%);
  transition: transform 0.2s ease-in-out;
  z-index: 200;
}

.agregar-imagen {
  width: 60%;
  transform: scale(0);
  border-radius: 10px;
  transition: transform 0.3s 0.2s;
}

.showImage {
  transform: scale(1);
}

.show {
  transform: translate(0);
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  cursor: pointer;
  z-index: 200;
}

/* ----- THIRD SECTION STYLES ----- */

.experts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.cont-expert {
  width: 30%;
  text-align: center;
  margin-bottom: 20px;
}

.cont-expert img {
  display: block;
  margin: auto;
  width: 80%;
}

.n-expert {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
  font-weight: 400;
}

/* ----- FOURTH SECTION STYLES ----- */
.section-psicologos {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
}

#galeria-psico {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.section-title p {
  padding-inline: 10rem;
}

.card {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.card img {
  object-fit: cover;
  width: 120px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.psicologo-desc {
  padding-right: 2rem;
}

.psicologo-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ----- FOOTER STYLES ----- */

footer {
  background: #8cd08a;
  padding-bottom: 0.1px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 40px;
}

.contact-us {
  width: 40%;
  color: #fff;
}

.brand {
  font-weight: 500;
  font-size: 40px;
}

.brand + p {
  font-weight: 500;
}

.social-media {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.social-media-icon {
  display: inline-block;
  margin-left: 20px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  transition: 0.15s all;
}

.social-media-icon i {
  font-size: 30px;
  line-height: 60px;
}

.line {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  height: 2px;
  border: 1px solid #fff;
  margin-bottom: 60px;
}

.social-media-icon:hover {
  background: #fff;
  color: #4ba252;
}

/* ----- MEDIA QUERIES ----- */

@media screen and (max-width: 1000px) {
  .section-title p {
    padding-inline: 0;
  }
}

@media screen and (max-width: 800px) {
  .menu {
    width: 50vw;
  }

  .titulo {
    font-size: 40px;
  }

  .contenedor-servicio img {
    width: 80%;
    margin-bottom: 40px;
  }

  .checklist-servicio {
    width: 80%;
  }

  .service {
    margin-bottom: 30px;
  }

  .img-galeria {
    width: 45%;
  }

  .agregarImagen {
    width: 80%;
  }

  .cont-expert {
    width: 80%;
  }

  .footer-content {
    justify-content: center;
  }

  .social-media {
    width: 80%;
    justify-content: space-evenly;
  }

  .social-media-icon {
    margin-left: 0;
  }

  .contact-us {
    text-align: center;
    width: 80%;
    margin-bottom: 40px;
  }

  .section-title p {
    padding-inline: 0;
  }
}

@media screen and (max-width: 500px) {
  .menu {
    width: 65vw;
  }

  .hamburger {
    top: 20px;
    right: 20px;
  }

  .titulo {
    font-size: 30px;
  }

  .subtitulo {
    font-size: 30px;
  }

  .img-galeria {
    width: 95%;
  }

  .agregar-imagen {
    width: 90%;
  }

  .social-media {
    width: 100%;
    justify-content: space-evenly;
  }

  .social-media-icon {
    margin-left: 0;
  }

  .contact-us {
    text-align: center;
    width: 95%;
    margin-bottom: 40px;
  }

  .section-title p {
    padding-inline: 14rem;
  }
}

button {
  border: 0;
  border-radius: 20px;
  font-size: 12px;
  padding: 1em 2em;
}

.boton-avatar,
.boton-verde {
  box-shadow: 0 0 5px 0 #333;
  text-decoration: none;
  color: rgb(35, 49, 43);
  display: inline-block;
  border: 0;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
}

.boton-verde {
  background-color: #2cb15f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.boton-avatar {
  background-color: #9cdeb5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-weight: bold;
  padding: 10px 14px;
}

.imagen-avatar {
  object-fit: contain;
  width: 25px;
  padding: 0;
}

.boton-verde:hover {
  background-color: #2bcb69;
  text-decoration: underline;
  transition: all 0.3s ease;
}
