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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif; }

input, button, textarea {
  border: none;
  outline: none;
  font-size: 1rem; }

img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover; }

li {
  list-style: none; }

a, button, li {
  text-decoration: none;
  font-size: 1rem; }

h1 {
  font-size: calc(1.5rem + 1.5vw); }

h2 {
  font-size: calc(1.1rem + .5vw); }

h3 {
  font-size: calc(1rem + .3vw); }

.contenedor-1 {
  max-width: 80vw;
  margin: 0 auto; }

@media screen and (min-width: 1050px) {
  .mobile {
    display: none; } }

@media screen and (max-width: 1050px) {
  .desktop {
    display: none; } }

.loader-content {
  margin-top: 5%;
  align-content: center;
  display: flex;
  margin: 0 auto; }

.loader {
  display: none;
  border: 12px solid #f3f3f3;
  /* Light grey */
  border-top: 12px solid #34db7f;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: all .8s ease;
  z-index: 10;
  background-color: #fff;
  padding: 1em 9.2%;
  box-shadow: 2px 2px 2px #00000010; }
  .site-navigation .logo {
    padding: 0 1.5em; }
    .site-navigation .logo .logo-img {
      display: flex;
      align-items: center;
      padding: .3em .5em;
      gap: .3em;
      background-color: #5db7dd;
      border-radius: 33px;
      color: #fff; }
      .site-navigation .logo .logo-img li {
        font-weight: 600;
        text-transform: uppercase; }
    .site-navigation .logo .open-btn {
      display: none; }
  .site-navigation.nav-scrolled {
    top: 0;
    margin: 0;
    background-color: #fff;
    padding: 0 6.2%;
    box-shadow: 2px 2px 2px #00000046; }
    .site-navigation.nav-scrolled .navigation-links {
      padding: 0; }
      .site-navigation.nav-scrolled .navigation-links li .btn-white {
        color: #fff;
        background-color: #5db7dd; }
  .site-navigation .navigation-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-basis: 40%;
    padding: 1em 0;
    gap: 1em; }
    @media screen and (max-width: 850px) {
      .site-navigation .navigation-links {
        transform: translateX(250%);
        transition: all .8s;
        transition-delay: .1s; }
        .site-navigation .navigation-links.modal {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          position: fixed;
          inset: 0;
          padding: 1% 4%;
          background-color: #5db7dd;
          gap: 2em; }
          .site-navigation .navigation-links.modal li a {
            color: #fff; }
          .site-navigation .navigation-links.modal .close-btn {
            align-self: flex-end;
            justify-content: flex-end;
            display: block; }
            .site-navigation .navigation-links.modal .close-btn i {
              color: red;
              font-size: 2rem; }
        .site-navigation .navigation-links.opened {
          transform: translateX(0);
          background-color: #5db7dd; } }
    .site-navigation .navigation-links li {
      padding: .3em .6em;
      border-radius: 33px; }
      .site-navigation .navigation-links li a {
        color: #333;
        text-transform: uppercase;
        font-weight: 400; }
      .site-navigation .navigation-links li.active {
        background-color: #5db7dd; }
        .site-navigation .navigation-links li.active a {
          color: #ffffff; }
  @media screen and (max-width: 850px) {
    .site-navigation {
      flex-direction: column;
      padding: 2em 0; }
      .site-navigation .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.5em; }
        .site-navigation .logo .open-btn {
          display: block;
          align-self: center;
          justify-self: flex-end; }
          .site-navigation .logo .open-btn .bar {
            display: block;
            background-color: black;
            height: 2px;
            width: 30px;
            margin: .5em 0; } }
  .site-navigation.opened {
    background-color: #5db7dd;
    padding: 13%; }
    .site-navigation.opened .open-btn .bar-1,
    .site-navigation.opened .open-btn .bar-3 {
      transition: all .3s ease; }
    .site-navigation.opened .open-btn .bar-1 {
      transform: translateY(0.6em); }
    .site-navigation.opened .open-btn .bar-3 {
      transform: translateY(-0.6em); }

.close-btn {
  display: none; }

@media screen and (max-width: 850px) {
  .site-navigation {
    padding: 0; } }

.btn-white {
  background-color: #fff;
  color: black;
  border: 2px solid transparent;
  border-radius: 33px;
  padding: .5em .8em;
  text-transform: uppercase;
  max-width: 220px;
  font-weight: 600; }

@keyframes fixed {
  from {
    transform: translateY(-15%);
    opacity: .3; }
  to {
    transform: translateY(0);
    opacity: 1; } }

.site-header {
  background: linear-gradient(to right, #00000063, #0000002f), url(../../img/bg-header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  background-attachment: fixed; }
  .site-header .header-flex {
    display: flex;
    align-items: center;
    min-height: 80vh; }
    @media screen and (max-width: 850px) {
      .site-header .header-flex {
        justify-content: center; } }
  .site-header .header-text {
    display: grid;
    place-content: center;
    height: 100%;
    border-radius: 3px;
    padding: 2em 6em;
    -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    border: 1px solid #80808025;
    color: #faf8f8; }
    .site-header .header-text h1 {
      letter-spacing: 2px;
      max-width: 14ch;
      line-height: 70px; }
    .site-header .header-text p {
      padding: 0 .5em; }
    .site-header .header-text a {
      background-color: #5db7dd;
      color: #fff;
      border: 2px solid transparent;
      border-radius: 33px;
      padding: .5em .8em;
      text-transform: uppercase;
      max-width: 220px;
      font-weight: 600;
      -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
      box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
      border: 1px solid #80808025;
      max-width: 100%;
      text-align: center;
      position: relative;
      overflow: hidden;
      z-index: 4;
      transition: all .8s ease;
      cursor: pointer;
      margin: 1em 0;
      padding: .6em .6em; }
      .site-header .header-text a::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: -1;
        position: absolute;
        inset: 0;
        transform: translateY(250%);
        transition: all .8s ease; }
      .site-header .header-text a:hover {
        color: #5db7dd;
        border-color: #5db7dd; }
        .site-header .header-text a:hover::after {
          transform: translateY(1%); }
    @media screen and (max-width: 850px) {
      .site-header .header-text {
        padding: 1em 2em;
        background-color: transparent;
        box-shadow: unset;
        text-align: center;
        border: none; }
        .site-header .header-text h1 {
          color: #fff;
          max-width: 100%;
          line-height: normal; }
        .site-header .header-text a {
          margin: 1em auto; } }

.site-main {
  background: linear-gradient(to right, #fff, #fdfdfd); }
  @media screen and (max-width: 900px) {
    .site-main {
      padding: 4em 1em;
      max-width: calc(73vw + 5%); } }
  @media screen and (max-width: 900px) and (max-width: 1360px) {
    .site-main {
      max-width: calc(90vw + 5%); } }
  @media screen and (max-width: 900px) and (max-width: 850px) {
    .site-main {
      max-width: calc(95vw + 5%); } }
  @media screen and (max-width: 900px) and (max-width: 550px) {
    .site-main {
      max-width: calc(99vw + .5%); } }

.list {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 16px 16px 0;
  background: #fff; }

.list__item {
  list-style: none;
  width: 100%;
  text-align: center;
  overflow: hidden;
  display: grid;
  place-content: center;
  padding-top: 5em; }

.list__item--click {
  cursor: pointer; }

.list__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4em;
  width: 100%;
  margin: 0 auto; }

.arrow .list__arrow {
  transform: rotate(90deg); }

.list__arrow {
  transition: transform .3s;
  max-width: 45px;
  background-color: #5db7dd;
  color: white; }

.list__show {
  width: 100%;
  margin-right: auto;
  color: black;
  list-style: none;
  text-align: left;
  transition: height .4s;
  height: 0; }

.site-about {
  position: relative;
  top: 5%;
  right: 0;
  left: 0;
  bottom: 0;
  min-height: 50vh;
  height: 100%;
  padding: 2em 0; }
  .site-about svg {
    position: absolute;
    top: 0; }
    @media screen and (max-width: 900px) {
      .site-about svg {
        display: none; } }
  .site-about .about-grid {
    padding: 4em 1em;
    max-width: calc(73vw + 5%);
    display: grid;
    place-content: center;
    grid-template-columns: repeat(2, 50%);
    z-index: 4;
    position: relative;
    right: 0;
    left: 0;
    top: 20%;
    margin: 0 auto;
    text-align: left;
    -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    border: 1px solid #80808025;
    background: linear-gradient(to bottom, #fff 45%, #fff 0);
    border-color: transparent;
    border-radius: 9px; }
    @media screen and (max-width: 1360px) {
      .site-about .about-grid {
        max-width: calc(90vw + 5%); } }
    @media screen and (max-width: 850px) {
      .site-about .about-grid {
        max-width: calc(95vw + 5%); } }
    @media screen and (max-width: 550px) {
      .site-about .about-grid {
        max-width: calc(99vw + .5%); } }
    @media screen and (max-width: 900px) {
      .site-about .about-grid {
        margin: 0 auto;
        grid-template-columns: 1fr;
        text-align: center; } }
    .site-about .about-grid .about-text {
      display: grid;
      place-content: center; }
      .site-about .about-grid .about-text h2 {
        text-transform: uppercase;
        padding: 1em 0 0 0;
        border-bottom: 2px solid #5db7dd; }
      .site-about .about-grid .about-text p {
        max-width: 84ch;
        padding: 1em 0; }
    .site-about .about-grid .about-img img {
      width: 100%;
      display: block;
      max-width: 330px;
      margin: 0 0 0 auto; }
      @media screen and (max-width: 860px) {
        .site-about .about-grid .about-img img {
          margin: 0 auto; } }

.ficha-head span {
  font-weight: 600;
  border-bottom: 2px solid #5db7dd; }

.ficha-head .list__arrow {
  margin: 1em auto;
  border-radius: 100%;
  transition: all .5s ease; }
  .ficha-head .list__arrow:hover {
    background-color: #20769a; }

.about-ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1550px;
  margin: 1em auto;
  padding: 4em 1em;
  max-width: calc(73vw + 5%);
  padding: 0;
  margin-top: 2em; }
  @media screen and (max-width: 1360px) {
    .about-ficha-grid {
      max-width: calc(90vw + 5%); } }
  @media screen and (max-width: 850px) {
    .about-ficha-grid {
      max-width: calc(95vw + 5%); } }
  @media screen and (max-width: 550px) {
    .about-ficha-grid {
      max-width: calc(99vw + .5%); } }
  .about-ficha-grid .ficha-texto li {
    border-bottom: 2px solid #8bcce7;
    padding: .5em 0;
    margin: 1em;
    font-weight: 600; }
  .about-ficha-grid .ficha-texto:last-of-type {
    margin-bottom: 4em; }
  @media screen and (max-width: 1050px) {
    .about-ficha-grid {
      grid-template-columns: 1fr; }
      .about-ficha-grid .ficha-texto {
        margin: unset; }
        .about-ficha-grid .ficha-texto li {
          margin: .5em;
          padding: .3em 0; }
        .about-ficha-grid .ficha-texto:last-of-type {
          margin-bottom: 2em; } }

.site-services .services-grid {
  display: grid;
  place-content: center;
  padding: 4em 1em;
  max-width: calc(73vw + 5%);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  min-height: 100vh;
  padding-top: 0;
  margin: 0 auto;
  gap: 1em 2em; }
  @media screen and (max-width: 1360px) {
    .site-services .services-grid {
      max-width: calc(90vw + 5%); } }
  @media screen and (max-width: 850px) {
    .site-services .services-grid {
      max-width: calc(95vw + 5%); } }
  @media screen and (max-width: 550px) {
    .site-services .services-grid {
      max-width: calc(99vw + .5%); } }
  .site-services .services-grid .services-title {
    padding: 1em 0 5% 0; }
    .site-services .services-grid .services-title h2 {
      border-bottom: 2px solid #5db7dd;
      text-transform: uppercase;
      max-width: max-content; }
  .site-services .services-grid .service-card {
    grid-row: 2;
    -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
    border: 1px solid #80808025;
    padding: 1.5em 0;
    aspect-ratio: 2 / 1;
    width: 100%;
    border: 2px solid transparent;
    min-width: 250px;
    background-color: #fff;
    transition: all .5s ease;
    border-radius: 6px; }
    @media screen and (max-width: 1050px) {
      .site-services .services-grid .service-card {
        grid-row: auto; } }
    .site-services .services-grid .service-card header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5em;
      padding: 0 1em; }
    .site-services .services-grid .service-card h3 {
      text-align: center;
      font-weight: 600; }
    .site-services .services-grid .service-card ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: .5em; }
      .site-services .services-grid .service-card ul li {
        font-weight: 400;
        padding: 1em; }
        .site-services .services-grid .service-card ul li i {
          color: green; }
        .site-services .services-grid .service-card ul li:nth-child(2n + 1) {
          background-color: #f4f4f493; }

.whatsapp-floating {
  position: fixed;
  z-index: 15;
  bottom: 0;
  right: 0;
  margin: 1em; }
  .whatsapp-floating i {
    font-size: 2.7rem;
    color: white;
    background-color: #25D366;
    border-radius: 100%;
    clip-path: circle();
    padding: .3em;
    aspect-ratio: 1 / 1;
    transition: all .8s ease; }
    .whatsapp-floating i:hover {
      background-color: #f0f0f0;
      color: #25D366; }

@media (min-width: 950px) {
  .fade-in {
    opacity: 0; }
  .fade-in.appear {
    transition: all 3s ease;
    opacity: 1; }
    .fade-in.appear:nth-child(2) {
      transition-duration: 3.3s; }
    .fade-in.appear:nth-child(3) {
      transition-duration: 2.7s; } }

.volvemos {
  display: grid;
  min-height: 60vh;
  place-content: center; }

.svg-footer {
  display: block;
  height: 100%; }

.site-form {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 0 0 0;
  flex-direction: column;
  padding: 4em 1em;
  max-width: calc(73vw + 5%);
  margin: 0 auto; }
  @media screen and (max-width: 1360px) {
    .site-form {
      max-width: calc(90vw + 5%); } }
  @media screen and (max-width: 850px) {
    .site-form {
      max-width: calc(95vw + 5%); } }
  @media screen and (max-width: 550px) {
    .site-form {
      max-width: calc(99vw + .5%); } }
  .site-form .form-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4em; }
    @media screen and (max-width: 850px) {
      .site-form .form-flex {
        flex-wrap: wrap; } }
  .site-form h2 {
    border-bottom: 2px solid #5db7dd;
    text-transform: uppercase;
    max-width: max-content;
    margin: 2em 0; }
  .site-form form {
    max-width: 750px;
    margin: 0 auto;
    width: 100%; }
    .site-form form .campo {
      display: flex;
      gap: .3em;
      margin: 1.5em 0;
      flex-direction: column; }
      .site-form form .campo label {
        color: #16161642; }
      .site-form form .campo input, .site-form form .campo textarea {
        padding: .8em;
        border-radius: 3px;
        -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        border: 1px solid #80808025;
        background-color: #fff;
        resize: none;
        transition: all .8s ease; }
        .site-form form .campo input:focus, .site-form form .campo textarea:focus {
          border-color: #5db7dd; }
      .site-form form .campo button {
        background-color: #5db7dd;
        color: #fff;
        border: 2px solid transparent;
        border-radius: 33px;
        padding: .5em .8em;
        text-transform: uppercase;
        max-width: 220px;
        font-weight: 600;
        padding: .6em .3em;
        max-width: 150px;
        -webkit-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        box-shadow: 10px 10px 34px -22px rgba(0, 0, 0, 0.75);
        border: 1px solid #80808025;
        position: relative;
        overflow: hidden;
        z-index: 4;
        transition: all .8s ease;
        cursor: pointer; }
        .site-form form .campo button::after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          background-color: #fff;
          z-index: -1;
          position: absolute;
          inset: 0;
          transform: translateY(250%);
          transition: all .8s ease; }
        .site-form form .campo button:hover {
          color: #5db7dd;
          border-color: #5db7dd; }
          .site-form form .campo button:hover::after {
            transform: translateY(1%); }

.form-col-3 {
  display: grid;
  gap: 1em;
  padding: 2.5em 0;
  place-content: center;
  margin-bottom: auto;
  max-width: 750px; }
  .form-col-3 p {
    box-shadow: 2px 4px 5px #00000069;
    max-width: 90ch;
    padding: 1em; }

.form-links {
  width: 100%;
  display: grid;
  place-content: center;
  min-height: 45vh; }
  .form-links h3 {
    text-transform: uppercase;
    padding: 1em 0;
    text-align: center; }
  .form-links .links-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    gap: 2em; }
  .form-links a {
    padding: .3em 0;
    color: #06138a;
    border-bottom: 2px solid #06138a;
    transition: all .5s ease; }
    .form-links a:hover {
      transform: translateY(-5px);
      border-color: #06138a32; }

.site-footer {
  background-color: #faf8f8;
  border-top: 3px solid #00000010; }
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    min-height: 45vh; }
    .site-footer .footer-grid .footer-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .site-footer .footer-grid .footer-item i {
        color: #5db7dd;
        padding: .5em 0;
        font-size: 1.5rem; }
      .site-footer .footer-grid .footer-item p {
        color: #3333339d;
        font-weight: 600; }
