@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: "bidfactory";
  src: url("/fonts/GoiaDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bidfactory";
  src: url("/fonts/GoiaDisplay-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/* Color */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  box-shadow: none;
  background: #fff;
}
*::-webkit-scrollbar-thumb {
  background: #FF9069;
  border: 2px solid #FF9069;
}

/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*	General	*/
html,
body {
  height: 100%;
}

body {
  background-color: #122142;
  color: #fff;
  font-size: 0.75vw;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 1400px) {
  body {
    font-size: 0.8vw;
  }
}
@media only screen and (max-width: 560px) {
  body {
    font-size: 2vw;
  }
}

.all {
  max-width: 1600px;
  margin: 0 auto;
}

a {
  cursor: pointer;
  outline: none;
  color: #FF9069;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

a img {
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

h1, h2, h3, h4 {
  font-weight: normal;
  line-height: 110%;
  font-family: "bidfactory", sans-serif;
  margin-bottom: 0.2em;
  text-wrap: balance;
}

p {
  font-size: 1.4em;
  line-height: 130%;
  text-wrap: balance;
}
p b, p strong {
  font-weight: 600;
}

p + p {
  margin-top: 1em;
}

ul {
  margin-block: 1em;
  padding-left: 1em;
}
ul li {
  font-size: 1.1em;
  line-height: 130%;
}
ul li + li {
  margin-top: 0.4em;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 25px;
  padding: 0 20px;
  background-color: #FF9069;
  color: #122142;
  text-decoration: none;
}
@media only screen and (min-width: 900px) {
  .btn:hover {
    background-color: #fff;
    color: #122142;
  }
}
.btn.btn-ltl {
  height: 30px;
  padding: 0 15px;
}

.buttons {
  margin-top: 1.5em;
}

header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #0d172e;
  transition: transform 0.3s;
}
header img {
  height: 40px;
  position: relative;
  top: 7px;
}
@media only screen and (max-width: 560px) {
  header img {
    height: 20px;
  }
}
header .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 30px;
}
@media only screen and (max-width: 560px) {
  header .box {
    padding: 1em;
  }
}
@media only screen and (max-width: 560px) {
  header .box a {
    display: none;
  }
}
header .box nav > ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .box nav > ul li {
  margin-top: 0;
  position: relative;
}
header .box nav > ul li a:not(.btn) {
  text-decoration: none;
  padding: 10px 5px;
}
header .box nav > ul li a:not(.btn) svg {
  position: relative;
  top: 3px;
}
header .box nav > ul li a:not(.btn) svg path {
  transition: fill 0.3s ease-out;
  fill: #FF9069;
}
@media only screen and (min-width: 900px) {
  header .box nav > ul li a:not(.btn):hover {
    color: #fff;
  }
  header .box nav > ul li a:not(.btn):hover svg path {
    fill: #fff;
  }
}
header .box nav > ul li a:not(.btn).nolink {
  cursor: default;
  pointer-events: none;
}
@media only screen and (min-width: 900px) {
  header .box nav > ul li:hover ul {
    display: block;
  }
}
header .box nav > ul > li:last-child {
  margin-left: 20px;
}
header .box nav > ul ul {
  display: none;
  position: absolute;
  top: 0;
  left: -20px;
  background-color: #0d172e;
  padding: 20px;
}
header .box nav > ul ul li {
  font-size: 0.9em;
  white-space: nowrap;
}
header .box nav > ul ul li + li {
  margin-top: 4px;
}
.main {
  padding-top: 87px;
}

section {
  min-height: calc(100dvh - 87px);
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 560px) {
  section {
    display: block;
  }
}
section .image {
  height: calc(100dvh - 87px);
  background-color: #FF9069;
  position: sticky;
  top: 87px;
  flex: 0.9;
  padding: 8em;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  section .image {
    padding: 1.5em 1em;
    position: relative;
    height: 66dvh;
  }
}
section .image img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: calc(100dvh - 87px);
  object-fit: cover;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 560px) {
  section .image img {
    height: 66dvh;
  }
}
section .image > *:not(img) {
  position: relative;
  z-index: 2;
}
section .image .title {
  font-family: "bidfactory", sans-serif;
  font-size: 4em;
  line-height: 96%;
  text-wrap: balance;
}
section .image .title span {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  font-size: 0.5em;
  display: block;
  line-height: 110%;
  text-wrap: balance;
}
section .text {
  flex: 1.1;
  padding: 6em 8em 8em 8em;
}
@media only screen and (max-width: 560px) {
  section .text {
    padding: 1.5em 1em;
  }
}
section .text p + h3 {
  margin-top: 1.5em;
}
section .text p + h2 {
  margin-top: 2em;
}
section:nth-child(2n+1) {
  background-color: #163355;
}
section.full {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
section.full img {
  width: calc(100% - 30px);
  max-width: 1400px;
  height: auto;
}

.main > details summary {
  text-align: center;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 4em;
  padding: 1em;
  font-family: "bidfactory", sans-serif;
  cursor: pointer;
  transition: color 0.3s;
}
@media only screen and (min-width: 900px) {
  .main > details summary:hover {
    color: #FF9069;
  }
}
.main > details[open]:not(:last-of-type) {
  margin-bottom: 4px;
}
.main > details[open] summary {
  color: #FF9069;
  border-bottom: none;
}
.main > details + details {
  margin-top: -2px;
}
.main > details section .text {
  padding-top: 0;
}

.head .title {
  font-size: 2.8em;
  color: #FF9069;
}
@media only screen and (max-width: 560px) {
  .head .title {
    font-size: 1.8em;
  }
}
.head h2 {
  font-size: 2em;
  color: #DFF0FF;
}
@media only screen and (max-width: 560px) {
  .head h2 {
    font-size: 1.7em;
  }
}

.text h2 {
  font-size: 2.4em;
  color: #FF9069;
}
@media only screen and (max-width: 560px) {
  .text h2 {
    font-size: 2em;
  }
}
.text h3 {
  font-size: 1.8em;
  color: #DFF0FF;
}
@media only screen and (max-width: 560px) {
  .text h3 {
    font-size: 1.6em;
  }
}
.text li {
  text-wrap: balance;
}
.text article + article {
  margin-top: 1.4em;
}
.text p strong {
  color: #FF9069;
}
.text .subtitle {
  font-size: 2em;
  line-height: 110%;
}
.text .subtitle:not(:first-child) {
  margin-top: 2em;
}
.text .subtitle + * {
  margin-top: 2em;
}

footer {
  background-color: #0d172e;
}
footer .box {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 10px 30px;
}
@media only screen and (max-width: 560px) {
  footer .box {
    padding: 1em;
  }
}
footer .box .address {
  margin-right: auto;
}
footer .box .redes {
  margin-right: 10px;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8em;
}
@media only screen and (max-width: 560px) {
  .intro {
    padding: 1.5em 1em;
  }
}
.intro video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  mix-blend-mode: soft-light;
  filter: grayscale(100%);
  opacity: 0.5;
  z-index: 1;
}
.intro .head {
  position: relative;
  z-index: 2;
  max-width: 50vw;
}
.intro .head h1 {
  line-height: 100%;
  font-size: 6em;
}
.intro .head p {
  font-size: 1em;
}
.intro .logo {
  margin-bottom: 0.5em;
}
.intro .logo img {
  height: 60px;
}
@media only screen and (max-width: 560px) {
  .intro .logo img {
    height: 40px;
  }
}

.home-more {
  min-height: 0;
  padding-right: 40%;
}

.casos-list {
  display: block;
}
.casos-list article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.casos-list article:nth-child(2n) {
  background-color: #163355;
}
.casos-list article .image {
  background-color: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  align-self: flex-start;
}
.casos-list article .image img {
  display: block;
  position: static;
  width: 100%;
  height: auto;
}
.casos-list article h2 .link {
  text-decoration: none;
  background-color: #FF9069;
  color: #163355;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 1em;
  font-size: 0.5em;
  position: relative;
  top: -5px;
}
@media only screen and (min-width: 900px) {
  .casos-list article h2 .link:hover {
    background-color: #122142;
    color: #FF9069;
  }
}

.contacto section {
  align-items: center;
}
.contacto .text {
  flex: 0.8;
}
.contacto iframe {
  flex: 1.2;
  height: calc(100dvh - 87px);
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */
