/* Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a, button {
  cursor: revert;
  transition: all 0.3s ease;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  display: none;
}

/* Fonts */
@font-face {
  font-family: "Inter Web";
  src: url(../fonts/Inter-Regular.woff) format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Inter Web";
  src: url(../fonts/Inter-Medium.woff) format("woff");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Inter Web";
  src: url(../fonts/Inter-Bold.woff) format("woff");
  font-style: normal;
  font-weight: 800;
}
/* Defaults */
:root {
  --c-negro: #000000;
  --c-blanco: #ffffff;
  --c-gris: #F2F2F2;
  --c-azul: #4F85C3;
  --altopag: 100dvh;
  --altohead: 10.6rem;
}

html {
  font-size: 10px;
  background-color: var(--c-blanco);
  scroll-behavior: smooth;
  scroll-padding-top: var(--altohead);
}

body {
  font-size: 1.95rem;
  line-height: 1.25;
  color: var(--c-negro);
  font-family: "Inter Web", sans-serif;
  font-weight: normal;
}

a {
  color: var(--c-negro);
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: var(--c-negro);
  text-decoration: none;
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-family: "Inter Web", sans-serif;
  font-weight: bold;
}

strong, b {
  font-weight: bold;
}

p:last-child {
  margin-bottom: 0 !important;
}

/* General */
.container {
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 134rem;
}
.container.container-ancho {
  max-width: 166rem;
}

.titu-gen {
  font-size: 4.5rem;
}

/* Custom */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 5rem;
  height: var(--altohead);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-blanco);
  z-index: -1;
}
header.seve {
  border-bottom-color: var(--c-gris);
}
header h1 {
  line-height: 0;
}
header h1 a {
  display: inline-block;
  line-height: 0;
}
header h1 a img {
  height: 2.7rem;
}
header .idioma-m {
  display: none;
}
header .der ul {
  display: flex;
  gap: 5rem;
}
header .der ul li {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.5rem;
}
header .der ul li a:hover {
  color: var(--c-azul);
}
header .der ul li.idioma a.active {
  text-decoration: underline;
}
header .hambu {
  display: none;
}

section.hero {
  margin-top: var(--altohead);
}
section.hero .sup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
section.hero .sup .izq {
  padding-right: 10rem;
}
section.hero .sup .izq h1 {
  margin-bottom: 3rem;
}
section.hero .sup .izq p {
  font-size: 2.7rem;
}
section.hero .sup .izq .link {
  padding-top: 9rem;
}
section.hero .sup .izq .link a {
  font-size: 1.5rem;
  display: inline-block;
  padding: 1.3rem 2.5rem;
  background-color: var(--c-azul);
  color: var(--c-blanco);
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 0.5rem;
  cursor: pointer;
}
section.hero .inf {
  max-width: 128rem;
  margin: 9rem auto 0;
}
section.hero .inf img {
  width: 100%;
  height: auto;
}

section.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
section.nosotros .izq {
  padding-right: 15rem;
}
section.nosotros .der {
  max-width: 64rem;
}
section.nosotros .der h2 {
  margin-bottom: 4rem;
}
section.nosotros .der p {
  margin-bottom: 2rem;
}

section.servicios {
  background-color: var(--c-gris);
  padding-top: 7rem;
  padding-bottom: 9rem;
}
section.servicios .carrusel {
  max-width: 128rem;
  position: relative;
}
section.servicios .carrusel h2 {
  text-align: center;
  margin-bottom: 6rem;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper {
  align-items: center;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide {
  padding: 0 1px;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card {
  background-color: var(--c-blanco);
  border: 1px solid var(--c-azul);
  border-radius: 0.6rem;
  padding: 2.5rem;
  cursor: grab;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card .servicio-icon {
  line-height: 0;
  margin-bottom: 2rem;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card .servicio-icon img {
  height: 8rem;
  width: auto;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card .descri {
  overflow: hidden;
  transition: all 0.3s ease;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card .descri p {
  padding-top: 1rem;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card.espacio {
  position: relative;
  z-index: 1;
  visibility: hidden;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card.funciona {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide .servicio-card.funciona .descri {
  max-height: 0;
}
section.servicios .carrusel .servicios-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .servicio-card.funciona .descri {
  max-height: 25rem;
}
section.servicios .carrusel .swiper-next {
  position: absolute;
  cursor: pointer;
  right: -7rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  padding: 2rem 0;
}
section.servicios .carrusel .swiper-next svg {
  height: 2.4rem;
  width: auto;
}
section.servicios .carrusel .swiper-prev {
  position: absolute;
  cursor: pointer;
  left: -7rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  padding: 2rem 0;
}
section.servicios .carrusel .swiper-prev svg {
  height: 2.4rem;
  width: auto;
}

section.pqnordlink {
  padding-top: 8rem;
  padding-bottom: 7rem;
}
section.pqnordlink h2 {
  text-align: center;
  margin-bottom: 4rem;
}
section.pqnordlink .pqnordlink-cards .pqnordlink-card {
  display: grid;
  grid-template-columns: 5rem 44rem 1fr;
  border-bottom: 1px solid var(--c-azul);
  padding: 3rem 0;
}
section.pqnordlink .pqnordlink-cards .pqnordlink-card .pqnordlink-icon {
  line-height: 0;
  padding-top: 0.3rem;
}
section.pqnordlink .pqnordlink-cards .pqnordlink-card .pqnordlink-icon svg {
  height: 3rem;
  width: auto;
}
section.pqnordlink .pqnordlink-cards .pqnordlink-card h3 {
  font-size: 3rem;
  padding-right: 3rem;
}

section.contacto {
  display: grid;
  grid-template-columns: 3fr 5fr;
  align-items: center;
  padding-bottom: 7rem;
}
section.contacto .izq {
  max-width: 30rem;
}
section.contacto .izq h2 {
  margin-bottom: 3rem;
}
section.contacto .izq .datos {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section.contacto .izq .datos .dato {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  font-weight: bold;
  gap: 1rem;
  align-items: center;
}
section.contacto .izq .datos .dato .ico {
  line-height: 0;
  height: 3.2rem;
}
section.contacto .izq .datos .dato .ico svg {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
section.contacto .der {
  line-height: 0;
}
section.contacto .der img {
  width: 100%;
  height: auto;
}

footer {
  background-color: var(--c-gris);
  padding: 4rem 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .container .izq img {
  height: 2.7rem;
  width: auto;
}
footer .container .izq .slogan {
  margin-top: 1.6rem;
}
footer .container .der {
  font-size: 1.3rem;
}
footer .container .der .redes {
  display: flex;
  justify-content: flex-end;
}
footer .container .der .redes a {
  display: block;
  line-height: 0;
}
footer .container .der .redes a svg {
  height: 3.2rem;
  width: auto;
  fill: var(--c-azul);
}
footer .container .der .copy {
  margin-top: 2rem;
}

/* Responsive */
@media (width < 1600px) {
  html {
    font-size: 8px;
  }
}
@media (width < 1200px) {
  .titu-gen {
    font-size: 4rem;
  }
  .carrusel.container:nth-child(2) {
    padding: 0 10rem;
  }
  section.servicios .carrusel .swiper-next {
    right: 3rem;
    width: 4rem;
  }
  section.servicios .carrusel .swiper-next svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.servicios .carrusel .swiper-prev {
    left: 3rem;
    width: 4rem;
  }
  section.servicios .carrusel .swiper-prev svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.hero .sup .izq {
    padding-right: 7rem;
  }
  section.hero .sup .izq .link {
    padding-top: 6rem;
  }
  section.nosotros .izq {
    padding-right: 7rem;
  }
  header {
    padding: 0 3rem;
  }
  header .der ul {
    gap: 3.5rem;
  }
}
@media (width < 992px) {
  header .der ul {
    gap: 2.5rem;
  }
}
@media (width < 768px) {
  .titu-gen {
    font-size: 3.1rem;
  }
  :root {
    --altohead: 8rem;
  }
  header .idioma-m {
    display: block;
    margin-left: auto;
    margin-right: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.7rem;
  }
  header .der {
    position: absolute;
    z-index: -2;
    left: 0;
    top: -100vh;
    transition: all 0.3s ease;
    background-color: var(--c-blanco);
    left: 0;
    right: 0;
    height: calc(100vh - var(--altohead));
    padding: 6rem 4rem 4rem;
  }
  header .der ul {
    flex-direction: column;
  }
  header .der ul li {
    font-size: 2rem;
    text-align: center;
  }
  header .der ul li.idioma {
    display: none;
  }
  header .hambu {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    height: 100%;
    margin-right: -3rem;
    width: 7.5rem;
  }
  header .hambu svg#abrir {
    height: 3rem;
    width: auto;
  }
  header .hambu svg#cerrar {
    height: 2.7rem;
    width: auto;
    display: none;
  }
  header.abierto .hambu svg#abrir {
    display: none;
  }
  header.abierto .hambu svg#cerrar {
    display: block;
  }
  header.abierto .der {
    top: var(--altohead);
  }
  section.hero .sup {
    grid-template-columns: 1fr;
  }
  section.hero .sup .der {
    order: 1;
    margin-left: -3rem;
    margin-right: -3rem;
  }
  section.hero .sup .izq {
    order: 2;
    padding-right: 0;
    padding-top: 4rem;
  }
  section.hero .sup .izq p {
    font-size: 2.3rem;
  }
  section.hero .sup .izq .link {
    padding-top: 4rem;
  }
  .container.container-ancho {
    grid-template-columns: 1fr;
  }
  .container.container-ancho .der {
    order: 1;
  }
  .container.container-ancho .izq {
    order: 2;
    padding-right: 0;
    padding-top: 5rem;
  }
  .carrusel.container:nth-child(2) {
    padding: 0 7rem;
  }
  section.servicios .carrusel .swiper-next {
    right: 1.5rem;
  }
  section.servicios .carrusel .swiper-prev {
    left: 1.5rem;
  }
  section.servicios .carrusel h2 {
    margin-bottom: 5rem;
  }
  section.pqnordlink h2 {
    margin-bottom: 1rem;
  }
  section.pqnordlink .pqnordlink-cards .pqnordlink-card {
    grid-template-columns: 4rem 1fr;
  }
  section.pqnordlink .pqnordlink-cards .pqnordlink-card .pqnordlink-icon svg {
    height: 2.3rem;
  }
  section.pqnordlink .pqnordlink-cards .pqnordlink-card h3 {
    font-size: 2.3rem;
  }
  section.pqnordlink .pqnordlink-cards .pqnordlink-card .descri {
    grid-column: 2/3;
    padding-top: 1rem;
  }
  section.contacto {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding-bottom: 0;
  }
  section.contacto .izq {
    margin: 0 auto;
  }
  section.contacto .izq h2 {
    text-align: center;
  }
  section.contacto .izq p {
    text-align: center;
  }
  section.contacto .izq .datos {
    margin: 0 4rem;
    padding-top: 3rem;
  }
  section.contacto .der {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  footer .container .der .redes {
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */