/* =========================================================
   CONTATO
========================================================= */

.contact-section {
  position: relative;

  width: 100%;
  min-height: calc(100svh - var(--header-height, 90px));

  display: flex;
  align-items: center;

  padding: 24px 0 26px;

  background: #f7f7f5;

  overflow: hidden;

  box-sizing: border-box;

  font-family: "Inter", sans-serif;

  scroll-margin-top: var(--header-height, 90px);
}


.contact-section * {
  font-family: "Inter", sans-serif;
}


/* =========================================================
   GRID DE FUNDO
========================================================= */

.contact-section::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  background-image:
    linear-gradient(
      rgba(8, 8, 8, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.045) 1px,
      transparent 1px
    );

  background-size: 68px 68px;

  pointer-events: none;
}


/* =========================================================
   GLOW
========================================================= */

.contact-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -240px;
  right: -120px;

  z-index: 0;

  background:
    radial-gradient(
      circle,
      rgba(255, 55, 65, 0.09),
      transparent 68%
    );

  pointer-events: none;
}


/* =========================================================
   WRAPPER
========================================================= */

.contact-section__wrapper {
  position: relative;
  z-index: 1;

  width: 100%;

  display: grid;

  grid-template-columns:
    1.05fr
    0.95fr;

  gap: 76px;

  align-items: center;
}


/* =========================================================
   CONTEÚDO ESQUERDO
========================================================= */

.contact-section__content {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-section__eyebrow {
  position: relative;

  display: inline-flex;

  align-items: center;

  margin-bottom: 14px;

  padding-left: 20px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: #676767;
}


.contact-section__eyebrow::before {
  content: "";

  position: absolute;

  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff3741;

  box-shadow:
    0 0 0 5px rgba(255, 55, 65, 0.08);
}


/* =========================================================
   TÍTULO
========================================================= */

.contact-section__title {
  max-width: 600px;

  margin: 0;

  font-size: clamp(44px, 3.55vw, 58px);
  font-weight: 650;

  line-height: 0.97;

  letter-spacing: -0.055em;

  color: #080808;
}


.contact-section__title span {
  display: block;

  margin-top: 3px;

  color: #ff3741;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.contact-section__description {
  max-width: 610px;

  margin: 18px 0 0;

  font-size: 15px;

  line-height: 1.55;

  color: #595959;
}


/* =========================================================
   DISPONIBILIDADE
========================================================= */

.contact-section__availability {
  width: 100%;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 20px;

  padding-top: 14px;

  border-top: 1px solid rgba(8, 8, 8, 0.1);
}


.contact-section__availability-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 auto;

  margin-top: 5px;

  border-radius: 50%;

  background: #ff3741;

  box-shadow:
    0 0 0 5px rgba(255, 55, 65, 0.08);
}


.contact-section__availability-text {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.contact-section__availability-text strong {
  font-size: 13px;
  font-weight: 600;

  line-height: 1.3;

  color: #080808;
}


.contact-section__availability-text span {
  font-size: 11px;

  line-height: 1.4;

  color: #818181;
}


/* =========================================================
   BOTÃO
========================================================= */

.contact-section__actions {
  margin-top: 14px;
}


.contact-section__btn {
  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border-radius: 9px;

  background: #080808;

  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


.contact-section__btn::after {
  content: "↗";

  margin-left: 14px;

  font-size: 15px;

  transition: transform 0.25s ease;
}


.contact-section__btn:hover {
  background: #161616;

  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(8, 8, 8, 0.15);
}


.contact-section__btn:hover::after {
  transform: translate(2px, -2px);
}


/* =========================================================
   COBERTURA
========================================================= */

.contact-section__coverage {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 11px;

  font-size: 10px;
  font-weight: 500;

  color: #858585;
}


.contact-section__coverage span {
  display: inline-flex;

  align-items: center;
}


.contact-section__coverage span:not(:last-child)::after {
  content: "•";

  margin-left: 7px;

  color: #b0b0b0;
}


/* =========================================================
   BLOCO DIREITO
========================================================= */

.contact-section__info {
  position: relative;

  width: 100%;

  border-top: 1px solid rgba(8, 8, 8, 0.12);
}


/* =========================================================
   ITEM
========================================================= */

.contact-info__item {
  position: relative;

  min-height: 80px;

  display: grid;

  grid-template-columns:
    48px
    1fr
    auto;

  align-items: center;

  gap: 18px;

  padding: 11px 0;

  border-bottom: 1px solid rgba(8, 8, 8, 0.12);

  color: inherit;

  text-decoration: none;
}


/* =========================================================
   NÚMERO
========================================================= */

.contact-info__number {
  font-size: 11px;
  font-weight: 600;

  color: #ff3741;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.contact-info__content {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.contact-info__label {
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color: #929292;
}


.contact-info__value {
  font-size: 18px;
  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -0.03em;

  color: #101010;
}


/* =========================================================
   AÇÕES DIREITA
========================================================= */

.contact-info__action {
  display: inline-flex;

  align-items: center;

  white-space: nowrap;

  padding: 7px 11px;

  border: 1px solid rgba(8, 8, 8, 0.12);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.45);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  color: #666666;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}


.contact-info__action::after {
  content: "↗";

  margin-left: 8px;

  font-size: 11px;
}


/* =========================================================
   HOVER DOS LINKS
========================================================= */

.contact-info__item--link {
  transition: padding 0.3s ease;
}


.contact-info__item--link:hover {
  padding-left: 8px;
}


.contact-info__item--link:hover .contact-info__action {
  color: #ffffff;

  border-color: #080808;

  background: #080808;

  transform: translateX(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .contact-section {
    min-height: auto;

    padding: 54px 0;
  }


  .contact-section__wrapper {
    grid-template-columns: 1fr;

    gap: 54px;
  }


  .contact-section__content {
    max-width: 720px;
  }


  .contact-section__title {
    max-width: 720px;
  }


  .contact-section__description {
    max-width: 680px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .contact-section {
    min-height: auto;

    padding: 46px 0;

    scroll-margin-top: 72px;
  }


  .contact-section__wrapper {
    gap: 42px;
  }


  .contact-section__eyebrow {
    margin-bottom: 18px;

    font-size: 10px;
  }


  .contact-section__title {
    font-size: clamp(40px, 12vw, 52px);

    line-height: 1;
  }


  .contact-section__description {
    margin-top: 22px;

    font-size: 15px;
  }


  .contact-section__availability {
    margin-top: 24px;
  }


  .contact-info__item {
    min-height: auto;

    grid-template-columns:
      34px
      1fr;

    gap: 14px;

    padding: 20px 0;
  }


  .contact-info__action {
    grid-column: 2;

    justify-self: flex-start;

    margin-top: 3px;
  }


  .contact-info__value {
    font-size: 17px;

    word-break: break-word;
  }


  .contact-section__coverage {
    line-height: 1.8;
  }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-section__btn,
  .contact-section__btn::after,
  .contact-info__item--link,
  .contact-info__action {
    transition: none;
  }

}