/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* Variables generales */
:root {
  --color-DarkBlue: #222832;
  --color-DarkCyan: #4E978B;
  --color-MediumAquamarine: #67C5AD;
  --color-DarkOrange: #F68B1F;
  --color-Orange: #F9A41B;
  --color-grey: #333333;
}

html {
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
}

/* Selector de idioma */
.selector-idioma {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(236, 236, 236, 0.9164040616246498) 100%);
  padding-right: 1rem;
  font-weight: bold;
}

.selector-idioma .idioma a {
  text-decoration: none;
  margin: 1rem 0;
  display: inline-block;
  color: var(--color-grey);

}

.selector-idioma .idioma a:hover {
  color: var(--color-DarkCyan);
}

/* Navegación */
.contenedor-menu {
  display: flex;
  height: 120px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.navbar--logo {
  display: block;
  min-width: 200px;
  max-width: 20%;
  padding-left: 0px;
  margin-left: 2rem;
}

.navbar--logo img {
  width: 100%;
}

@media (max-width: 767.98px) {
  .navbar--logo {
    min-width: 200px;
    max-width: 50%;
  }
}

.navbar--button {
  display: none;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
  color: var(--color-DarkBlue);
  font-size: 3rem;
}

.navbar--button:hover {
  color: var(--color-DarkCyan);
}

.navbar--list {
  display: flex;
  padding: 0;
}

.navbar--list--item {
  margin: 5px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.navbar--list--item-link {
  text-decoration: none;
  font-size: 1.2rem;
  padding: 2rem 0.8rem;
  color: var(--color-grey);
  font-weight: bold;
}

.navbar--list--item-link:hover {
  color: var(--color-DarkCyan);
  transition: 0.5s ease-in-out;
}

.activeMenu {
  color: var(--color-DarkCyan);
}

.menu-list-item-contacto {
  background-color: var(--color-Orange);
  height: 40px;
  width: 180px;
  border-radius: 40px 0 0 40px;
  display: flex;
  align-items: center;
  padding-left: 0.3rem;
}

.menu-list-item-contacto a {
  display: inline-block;
  color: white;
  font-size: 1.2rem;
  margin: 0.2rem;
  padding: 0;
  text-decoration: none;
  font-weight: bold;
}

.menu-list-item-contacto a span {
  margin-left: 0.5rem;

}

.menu-list-item-contacto a i {
  font-size: 1.5rem;
}

.menu-list-item-contacto:hover {
  background-color: var(--color-DarkCyan);
}

@media screen and (max-width: 910px) {
  .navbar--button {
    display: block;
    position: absolute;
    right: 20px;
  }

  .navbar--list {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 400px;
    top: 160px;
    margin: 0;
    padding: 0;
    width: 100%;
    left: 0;
    background-color: white;
  }

  .navbar--list--item {
    width: 100%;
  }

  .navbar--list--item a {
    width: 100%;
    display: inline-block;
    padding: 0rem 0;
    font-size: 1.2rem;
    color: var(--color-grey);
  }

  .menu-list-item-contacto {
    border-radius: 40px 40px 40px 40px;
  }

}

.show {
  display: flex;
}


/*Hero banner*/
.hero {
  width: 100%;
  height: 450px;
  padding: 0;
  background: url('/recursos/image/bg/bg1.svg') var(--color-MediumAquamarine);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-container {
  position: relative;
  display: flex;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: center;
}

.hero-content-image {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 50%;
  height: 100%;
}

.hero-content-image img {
  width: 100%;
}

.hero-content-text {
  margin: 0 auto;
  margin-left: 6rem;
  z-index: 1;
}

.hero-content-text h1 {
  font-size: 5rem;
  color: var(--color-DarkBlue);
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.hero-content-text h4 {
  font-size: 1.8rem;
  color: var(--color-DarkBlue);
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: bold;
}

.hero-content-text h4::after {
  content: '';
  width: 200px;
  height: 3px;
  background-color: white;
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto 5px;

}

.hero-content-text h2 {
  font-size: 3.6rem;
  color: white;
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: bold;
}


.hero-social {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
  padding: 0.2rem;
  height: 200px;
  background-color: var(--color-DarkBlue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
}

.hero-social a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #f0eff4;
  padding: 0.5rem;
}

.hero-social a:hover {
  color: var(--color-DarkCyan);
}


/* Sección de servicios*/

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.title-section {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem;
  display: inline-block;
}

.title-section span {
  color: var(--color-MediumAquamarine);
  font-size: 2.5rem;
}

.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0 10px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 0;
}


.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
  background-color: #F1F2F2;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image .card-img {
  height: 70%;
  width: 70%;
  object-fit: contain;
}

.name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.card-description {
  background-color: #F1F2F2;
  padding: 1rem;
  text-align: center;
  width: 300px;
  min-height: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.card:hover .card-description {
  max-height: 350px;
  opacity: 1;
}

.card-description .description {
  font-weight: 500;
  border-bottom: 3px solid #fff;
  margin: 0 1.5rem;
}

.card-description .description:last-child {
  padding-top: 0.2rem;
  border-bottom: none;
}


.swiper-navBtn {
  color: var(--color-DarkBlue);
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: var(--color-grey);
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: var(--color-grey);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-grey);
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}



.download-button {
  background-color: var(--color-DarkOrange);
  padding: 0.2rem 0;
  display: inline-block;
  margin: 20px 0px 5px 0px;
  width: 150px;
  border-radius: 25px 25px 25px 25px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.download-button:hover {
  background-color: var(--color-MediumAquamarine);
  color: var(--color-DarkBlue);
}

.download-button:hover a {
  color: var(--color-DarkBlue);
}

.download-button a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.download-button i {
  font-size: 1.5rem;
  margin-top: 2px;
  padding: 0;
}

/* Sección somos */
.somos {
  background: url('/recursos/image/bg/bg2.svg') var(--color-DarkBlue);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.somos-content-text {
  width: 50%;
  color: #fff;
  max-width: 450px;
  line-height: 1.4rem;
}

.somos-content-text h1 {
  font-size: 2.5rem;
  color: var(--color-DarkCyan);

}

.somos-content-image {
  margin: 30px 1rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  justify-content: space-around;
  padding: 1rem;
}

.somos .card {
  background: transparent;
  margin: 30px;
}

.somos .card .image-content .card-image {
  padding: 0;
  width: 160px;
  height: 160px;
  margin-bottom: 0.5rem;
}

.somos .card .image-content .card-image .card-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover
}

.somos .card .image-content .card-image::after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #67C5AD;
  border-radius: 50%;
  mix-blend-mode: multiply
}

.somos .card .card-content .name {
  color: #fff;
  padding: 0;
  margin: 0;
}

.somos .card .card-content .description {
  color: var(--color-DarkCyan);
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
}


@media screen and (max-width: 768px) {
  .somos-content-text {
    padding: 0;
    margin-top: 50px;
    width: 80%;
  }
}

.clientes {
  width: 100%;
}

.clientes .swiper {
  width: 100%;
  height: 150px !important;
}

.clientes .card-image {
  background: transparent;
}

.clientes .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 150px;
}

.clientes .swiper-slide img {
  display: block;
  width: 90%;
  height: 100%;
  object-fit: contain;
}

.clientes .swiper {
  width: 100%;
  height: 300px;
  margin: 20px auto;
}

/* Trabajos */

.trabajos {
  background-color: #cccccc;
  padding: 1rem 0rem;

}

.trabajos .title-section {
  color: var(--color-DarkBlue);
}

.trabajos .title-section span {
  color: #fff;
}

.trabajos .swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

.trabajos .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  height: 500px;
}

@media screen and (max-width: 768px) {
  .trabajos .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

}

.trabajos .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 25px;
}


.trabajos .swiper-navBtn {
  color: #9DABC2;
  transition: color 0.3s ease;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;

}

.trabajos .swiper-navBtn:hover {
  color: var(--color-grey);
}

.trabajos .swiper-navBtn::before,
.trabajos .swiper-navBtn::after {
  font-size: 20px;
  font-weight: bold;
}

.trabajos .swiper-button-next {
  right: 40px;
}

.trabajos .swiper-button-prev {
  left: 40px;
}


/* Contactos */
.Contacto {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: start;
  margin-top: 1.5rem;
}

.contacto-text {
  max-width: 500px;
}

.contacto-formulario {
  max-width: 600px;
}

.contacto-text h1 {
  color: var(--color-MediumAquamarine);
}

.contacto-text p {
  margin: 3rem 0 3rem 0;
  font-size: 1.2rem;
  line-height: 2rem;

}




.label {
  margin-left: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-DarkBlue);
  font-size: 1rem;
}

.contact--form {
  display: flex;
  flex-wrap: wrap;
}

.content-input {
  width: 45%;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
}

.content-input-email {
  width: 92%;
}

.content-textarea {
  width: 92%;
  margin: 0rem;
  display: flex;
  padding-right: 0rem;
  flex-direction: column;
}

.input--form {
  border-radius: 10px;
  padding: 0.8rem;
  font-size: 1rem;
  border: 0;
  color: var(--color-DarkBlue);
  border: 1px solid transparent;
  outline: none;
  background-color: White;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.09);
}

.input--form:hover {
  border: 1px solid var(--color-DarkCyan);
}

.content-button {
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.content-button button {
  padding: 1rem 4rem;
  border-radius: 35px;
  color: #fff;
  background-color: var(--color-MediumAquamarine);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.content-button button:hover {
  color: #fff;
  background-color: var(--color-grey);
  transition: 0.5s ease-in-out;
}

.container-logo-dc {
  background-color: var(--color-MediumAquamarine);
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.content-logo {
  width: 400px;
}

/* Footer */
.footer {
  background-color: var(--color-DarkBlue);
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.container-footer {
  max-width: 1200px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}


.footer-texto {
  background-color: var(--color-DarkBlue);
  color: var(--color-MediumAquamarine);
  display: flex;
  max-width: 600px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-texto p {
  margin: 0.5rem 1rem;
}


.footer-social {
  position: absolute;
  bottom: 0;
  right: 10px;
  padding: 0.4rem;
  background-color: var(--color-Orange);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0px 0;
  width: 200px;
}

.footer-social a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #f0eff4;
  padding: 0.3rem 0.8rem;
}

.footer-social a:hover {
  color: var(--color-DarkCyan);
}

.footer-derechos {
  width: 100%;
  background: #fff;
  color: var(--color-DarkBlue);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .container-footer {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-social {
    position: relative;
  }
}