:root{
  --blue: #002ADF;
  --orange: #F2660A;
  --text: #1f2937;
  --muted: #666666;
  --panel: #ffffff;
}

@font-face {
  font-display: swap;
  font-family: 'Exo';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/exo-v25-latin-regular.woff2') format('woff2'),
  url('fonts/exo-v25-latin-regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Exo';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/exo-v25-latin-700.woff2') format('woff2'),
  url('fonts/exo-v25-latin-700.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lexend-v26-latin-regular.woff2') format('woff2'),
  url('fonts/lexend-v26-latin-regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/lexend-v26-latin-600.woff2') format('woff2'),
  url('fonts/lexend-v26-latin-600.ttf') format('truetype');
}

*{ box-sizing:border-box; }
html, body { height:100%; }
body{
  margin:0;
  color: var(--text);
  background:#fff;
  font-family: Lexend;
  font-weight: 400;
}

.working{
  min-height:100vh;
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  overflow:hidden;
}

.left{
  background: var(--panel);
  padding: clamp(28px, 4vw, 64px);
  padding-block: 0;
  display:flex;
  flex-direction:column;
  gap: clamp(18px, 3vw, 65px);
  padding-right: 0px;
  justify-content: center;
}

.copy__kicker{
  color: var(--blue);
  font-family: Exo;
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
}

.copy__title{
  margin: 0 0 12px 0;
  color: var(--orange);
  font-size: 25px;
  font-family: Exo;
  font-weight: 400;
  text-transform: uppercase;
}

.copy__text{
  margin: 0;
  color: var(--muted);
  line-height: 25px;
  font-size: 20px;
  font-family: Lexend;
}

.contact{
  list-style:none;
  padding:0;
  margin: 6px 0 0 0;
  display:grid;
  gap: 30px;
  max-width: 520px;
}
.contact a {
  text-decoration: none;
  color: #666666;
}
.contact__item{
  display:grid;
  grid-template-columns: 80px 1fr;
  align-items:center;
  column-gap: 15px;
}
.contact__icon{
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display:grid;
  place-items:center;
}
.contact__icon svg{
  width: 24px;
  height: 24px;
}
.contact__primary{
  color: #666666;
  font-size: 18px;
  font-family: 'Lexend';
  font-weight: 400;
}
.contact__title {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Lexend';
  margin-bottom: 5px;
}


.tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  border-radius: 7px;
}

.right *{
  position: absolute;
}

.tile--a{
  left: 0;
  top: 17%;
}

.tile--b{
  right: 10%;
  top: 30%;
}

.tile--c{
  left: 0;
  top: 58%;
}

.tile--d {
  top: 58%;
  right: 20%;
}

/* Panel derecho */
.right{
  position:relative;
  background:#FFFFFF;
  overflow:hidden;
}

.contact .contact__email{
  text-decoration: underline;
}

@media (max-width: 1699px){
  .tile--a {
    max-width: 350px;
  }

  .tile--c {
    width: 240px;
  }
}

@media (max-width: 1366px){
  .left {
    padding: clamp(28px, 0vw, 64px);
    gap: clamp(18px, 3vw, 20px);
  }

  .tile--b {
    max-width: 174px;
    top: 33%;
  }

  .tile--c {
    top: 46%;
    max-width: 316px;
  }

  .tile--d {
    right: 10%;
    top: 70%;
  }

  .tile--a {
    top: 10%;
  }
}

@media (max-width: 1100px){
  .working{ grid-template-columns: 1.15fr .95fr; }
}

@media (max-width: 991px){
  .working{ grid-template-columns: 1fr; }
  .right{min-height: 52vh;display: grid;grid-template-columns: repeat(2, 1fr);justify-items: center;align-items: center;padding: clamp(28px, 0vw, 64px);}
  .right * {position: relative;top: 0;left: 0;max-width: 100%;}
  .contact {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0;
    justify-content: center;
  }
  .contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact__text, .copy__kicker, .copy__title, .copy__text {
    text-align: center;
  }

  .copy__text {
    margin-top: 25px;
    margin-bottom: 65px;
  }
}

@media (max-width: 768px){
  .contact{
    flex-direction: column;
  }
  .contact__item {
    flex-direction: row;
    align-items: self-start;
  }
  .contact__text {
    text-align: left;
  }
}

@media (max-width: 420px){
  .copy__kicker {
    font-size: 25px;
    line-height: 40px;
  }

  .copy__title {
    font-size: 20px;
  }

  .copy__text {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .contact__icon {
    width: 50px;
    height: 50px;
  }

  .contact__icon img {
    width: 75%;
  }

  .left {
    padding-bottom: 0;
  }

  .right {
    min-height: 0;
    gap: 40px;
  }

  .contact {
    gap: 20px;
  }
}
