/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
b,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-family: var(--font-primary);
  line-height: 1;
  color: var(--color-text);
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* =========================
   VARIÁVEIS
========================= */

:root {
  /* CORES PRINCIPAIS */
  --color-red: #e30613;
  --color-black: #000000;
  --color-dark: #050505;
  --color-text: #111111;
  --color-card: #1a1a1a;

  /* CORES NEUTRAS */
  --color-white: #ffffff;
  --color-light: #f5f5f5;

  --color-gray-dark: #575757;
  --color-gray: #777777;
  --color-gray-medium: #8a8a8a;
  --color-gray-light: #b0b0b0;

  --color-border: #bdbdbd;
  --color-border-dark: #242424;

  /* FONTE */
  --font-primary: Arial, sans-serif;
}
/* =========================
   HEADER
========================= */

header {
  width: 100%;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 8%;

  background-color: var(--color-black);

  position: fixed;
  z-index: 1000;
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;

  width: 180px;
  height: auto;

  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

/* =========================
   MENU
========================= */

.menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */

.menu a {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* HOVER */

.menu a:hover {
  color: var(--color-red);
}

/* LINHA ANIMADA */

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* =========================
   MENU MOBILE - TOGGLE
========================= */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--color-white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
/* =========================
   INÍCIO / HERO
========================= */

#inicio {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
  background-image: url("img/hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#inicio h1 {
  max-width: 850px;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 30px;
  text-shadow:
    -0.5px -0.5px 0 var(--color-white),
    0.5px -0.5px 0 var(--color-white),
    -0.5px 0.5px 0 var(--color-white),
    0.5px 0.5px 0 var(--color-white);
}

#inicio h1 span {
  color: var(--color-red);
}

#inicio p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.8);
}

#inicio a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  padding: 18px 30px;

  background-color: var(--color-red);

  color: var(--color-white);

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

/* =========================
   HERO LABEL
========================= */

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

/* LINHA */

.hero-label-line {
  display: block;
  width: 38px;
  height: 2px;
  background-color: var(--color-red);
}

/* TEXTO */

.hero-label span:last-child {
  color: #555555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

#inicio a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  padding: 18px 30px;
  background-color: var(--color-red);
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.button-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

#inicio a:hover .button-arrow {
  transform: translateX(5px);
}

/* =========================
   SOBRE
========================= */

#sobre {
  position: relative;

  padding: 140px 8%;

  background-color: var(--color-white);
  color: var(--color-text);

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.sobre-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================
   LABEL
========================= */

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 70px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-label span {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--color-red);
}

/* =========================
   GRID PRINCIPAL
========================= */

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 18%;
  align-items: start;
}

/* =========================
   TÍTULO
========================= */

.sobre-title h2 {
  margin: 0;
  font-size: clamp(52px, 5.8vw, 95px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-text);
}

.sobre-title h2 span {
  color: var(--color-red);
}

/* =========================
   TEXTO
========================= */

.sobre-text {
  max-width: 420px;
  padding-top: 10px;
}

.sobre-text p {
  font-size: 16px;
  margin: 0 0 25px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-gray-dark);
}

/* DESTAQUE */

.sobre-text .sobre-intro {
  margin-bottom: 35px;

  color: var(--color-text);

  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;

  line-height: 1.2;
}

/* =========================
   MANIFESTO
========================= */

.sobre-manifesto {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 120px;

  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.manifesto-item {
  display: flex;
  flex-direction: column;

  gap: 18px;

  padding: 35px 30px 35px 0;

  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.manifesto-item:not(:first-child) {
  padding-left: 30px;
}

/* REMOVE BORDA DO ÚLTIMO */

.manifesto-item:last-child {
  border-right: none;
}

/* NUMERAÇÃO */

.manifesto-item span {
  color: var(--color-red);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;
}

/* TEXTO */

.manifesto-item strong {
  color: var(--color-text);

  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;

  letter-spacing: -0.5px;

  text-transform: uppercase;
}

@media (max-width: 768px) {
  /* =========================
   MENU MOBILE
========================= */

  header {
    height: 80px;
  }

  /* ESCONDE MENU */
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  /* MENU ABERTO */
  .menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* LISTA */

  .menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  /* LINKS */

  .menu ul li a {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  /* BOTÃO HAMBURGUER */
  .menu-toggle {
    display: block;
  }

  /* TRANSFORMA EM X */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #sobre {
    padding: 100px 8%;
  }
  .sobre-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .sobre-content h2 {
    font-size: clamp(55px, 15vw, 80px);
  }
}

/* =========================
   OPORTUNIDADES
========================= */

/* =========================
   LABEL - OPORTUNIDADES
========================= */

.oportunidades-header .section-label {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 20px;

  color: var(--color-gray-dark);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;
}

/* BARRA VERMELHA */

.oportunidades-header .section-label::before {
  content: "";

  display: block;

  width: 40px;
  height: 2px;

  background-color: var(--color-red);

  flex-shrink: 0;
}

#oportunidades {
  padding: 140px 8%;
  background-color: var(--color-light);
  color: var(--color-text);
}

/* HEADER */

.oportunidades-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

/* TÍTULO */
.oportunidades-header h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(46px, 5vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--color-text);
}

/* TEXTO */
.oportunidades-header > p {
  max-width: 400px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/* LISTA DE OPORTUNIDADES */
.oportunidades-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.oportunidade-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-color: var(--color-card);
  isolation: isolate;
}

/* IMAGEM */
.oportunidade-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* OVERLAY */
.oportunidade-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.9) 100%
  );
  transition: background 0.4s ease;
}

/* CONTEÚDO */
.oportunidade-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 35px;
  color: var(--color-white);
}

/* TÍTULO DO PROJETO */
.oportunidade-content h3 {
  margin: 0 0 25px;
  color: var(--color-white);
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

/* CTA DO CARD */
.oportunidade-content a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.oportunidade-content a span {
  color: var(--color-red);
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* HOVER DO CARD */
.oportunidade-card:hover img {
  transform: scale(1.08);
}

.oportunidade-card:hover .oportunidade-overlay {
  background: linear-gradient(
    180deg,
    rgba(227, 6, 19, 0.05) 20%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.oportunidade-card:hover a span {
  transform: translateX(8px);
}

/* CTA DA SEÇÃO */
.oportunidades-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  text-align: center;
}

.oportunidades-cta p {
  margin-bottom: 25px;
  color: var(--color-gray-dark);
  font-size: 16px;
  line-height: 1.6;
}

.oportunidades-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 30px;
  background-color: var(--color-red);
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.oportunidades-cta a:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  transform: translateY(-3px);
}

.oportunidades-cta a:hover .button-arrow {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVO - OPORTUNIDADES
========================= */

@media (max-width: 768px) {
  #oportunidades {
    padding: 90px 6%;
  }

  /* HEADER */

  .oportunidades-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 45px;
  }

  /* LABEL */

  .oportunidades-header .section-label {
    gap: 10px;

    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: 3px;
  }

  .oportunidades-header .section-label::before {
    width: 30px;
  }

  /* TÍTULO */

  .oportunidades-header h2 {
    max-width: 100%;

    font-size: clamp(42px, 12vw, 64px);

    line-height: 0.95;

    letter-spacing: -2px;
  }

  /* TEXTO */

  .oportunidades-header > p {
    max-width: 100%;

    font-size: 16px;

    line-height: 1.6;
  }

  /* CARDS */

  .oportunidades-lista {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  /* CARD */

  .oportunidade-card {
    min-height: 480px;
  }

  /* CONTEÚDO */

  .oportunidade-content {
    padding: 30px;
  }

  /* TÍTULO DO PROJETO */

  .oportunidade-content h3 {
    margin-bottom: 20px;

    font-size: 32px;

    color: var(--color-white);
  }

  /* CTA FINAL */

  .oportunidades-cta {
    margin-top: 50px;
  }
}

/* =========================
   CONTATO
========================= */

#contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding: 140px 8%;
  background-color: var(--color-white);
  color: var(--color-text);
}

/* =========================
   INTRO
========================= */

.contato-intro {
  max-width: 500px;
}

/* LABEL */

.contato-intro .section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--color-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contato-intro .section-label::before {
  content: "";
  width: 38px;
  height: 2px;
  background-color: var(--color-red);
}

/* TÍTULO */
.contato-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(55px, 6vw, 100px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

/* TEXTO */

.contato-intro p {
  max-width: 420px;
  color: var(--color-gray-dark);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================
   FORMULÁRIO
========================= */

#contato form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* CAMPOS */

#contato input,
#contato textarea {
  width: 100%;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  outline: none;
  background: transparent;
  color: var(--color-text);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

/* PLACEHOLDER */

#contato input::placeholder,
#contato textarea::placeholder {
  color: var(--color-gray);
}

/* FOCUS */

#contato input:focus,
#contato textarea:focus {
  border-color: var(--color-red);
}

/* TEXTAREA */

#contato textarea {
  min-height: 140px;

  resize: vertical;
}

/* BOTÃO */

#contato button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  align-self: flex-start;

  gap: 20px;

  margin-top: 35px;

  padding: 18px 30px;

  border: none;

  background-color: var(--color-red);

  color: var(--color-white);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* SETA */

#contato button .button-arrow {
  font-size: 20px;

  transition: transform 0.3s ease;
}

/* HOVER */

#contato button:hover {
  background-color: var(--color-text);

  transform: translateY(-3px);
}

#contato button:hover .button-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  #contato {
    grid-template-columns: 1fr;

    gap: 70px;

    padding: 100px 8%;
  }
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 80px 8% 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* =========================
   FOOTER MAIN
========================= */

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}

/* =========================
   BRAND
========================= */

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 25px;
}

.footer-brand .logo img {
  width: 280px;
  height: auto;
}

.footer-brand p {
  color: var(--color-gray-medium);

  font-size: 15px;

  line-height: 1.6;
}

/* =========================
   COLUNAS
========================= */

.footer-column h3 {
  margin-bottom: 25px;

  color: var(--color-red);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.footer-column ul {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.footer-column a {
  color: var(--color-white);

  font-size: 15px;

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-red);
}

/* =========================
   FOOTER BOTTOM
========================= */

#bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--color-border-dark);
  color: var(--color-gray);
  font-size: 12px;
}

#bottom p {
  margin: 0;
}

#bottom a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

#bottom a:hover {
  color: var(--color-red);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 70px 8% 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: auto;
  }

  #bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 25px 0;
  }
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-social i {
  width: 18px;
  color: var(--color-red);
  font-size: 17px;
  text-align: center;
}

.footer-social a:hover {
  color: var(--color-red);
  transform: translateX(5px);
}

.footer-social a:hover i {
  color: var(--color-white);
}

@media (max-width: 768px) {
  /* =========================
     FOOTER
  ========================= */
  .footer-links {
    display: none;
  }
  footer {
    padding: 70px 6% 25px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    width: 180px;
    height: auto;
  }

  .footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    line-height: 1.6;
  }

  /* CONTATO */

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  /* COLUNAS */

  .footer-column h4 {
    margin-bottom: 22px;
  }

  .footer-column ul,
  .footer-social {
    gap: 16px;
  }

  /* DIVISÓRIA */

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    margin-top: 60px;
    padding-top: 25px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 60px 7% 25px;
  }

  .footer-content {
    gap: 45px 20px;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-social a {
    gap: 10px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact h4 {
  margin-bottom: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--color-white);
  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-contact a i {
  width: 16px;

  color: var(--color-red);
  font-size: 18px;
  text-align: center;

  transition: transform 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-red);
}

.footer-contact a:hover i {
  transform: scale(1.1);
}

.footer-contact a i {
  width: 16px;

  color: var(--color-red);

  font-size: 17px;
  text-align: center;

  transition: transform 0.3s ease;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--color-white);
  text-decoration: none;
}

.footer-contact a i {
  width: 18px;
  flex-shrink: 0;

  color: var(--color-red);
  text-align: center;
}

/* =========================
   ELEMENTOS GEOMÉTRICOS
========================= */

#sobre {
  position: relative;
  overflow: hidden;
}

/* GARANTE O CONTEÚDO ACIMA */

.sobre-container {
  position: relative;
  z-index: 2;
}

/* =========================
   RETÂNGULO PRETO
========================= */

#sobre::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 180px;

  left: 8%;
  bottom: 120px;

  background-color: var(--color-text);

  opacity: 0.05;

  transform: rotate(-12deg);

  z-index: 1;

  animation: shapeBlackMove 14s ease-in-out infinite;
}

/* =========================
   QUADRADO VERMELHO
========================= */

#sobre::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: 25%;
  bottom: 90px;

  background-color: var(--color-red);

  opacity: 0.08;

  transform: rotate(18deg);

  z-index: 1;

  animation: shapeRedMove 12s ease-in-out infinite;
}

@keyframes shapeBlackMove {
  0%,
  100% {
    transform: rotate(-12deg) translate(0, 0);
  }

  50% {
    transform: rotate(-12deg) translate(25px, -15px);
  }
}

@keyframes shapeRedMove {
  0%,
  100% {
    transform: rotate(18deg) translate(0, 0);
  }

  50% {
    transform: rotate(18deg) translate(-15px, 25px);
  }
}

@media (max-width: 768px) {
  #sobre::before {
    width: 280px;
    height: 120px;

    left: -80px;
    bottom: 80px;
  }

  #sobre::after {
    width: 120px;
    height: 120px;

    left: 35%;
    bottom: 50px;
  }
}

/* =========================
   SOBRE - MOBILE
========================= */

@media (max-width: 768px) {
  #sobre {
    padding: 80px 6%;
  }

  /* LABEL */

  .section-label {
    margin-bottom: 45px;
  }

  /* GRID */

  .sobre-grid {
    display: flex;
    flex-direction: column;

    gap: 45px;
  }

  /* TÍTULO */

  .sobre-title {
    width: 100%;
  }

  .sobre-title h2 {
    font-size: clamp(48px, 14vw, 72px);

    line-height: 0.9;
    letter-spacing: -2px;

    max-width: 100%;
  }

  /* TEXTO */

  .sobre-text {
    width: 100%;
    max-width: 100%;

    padding-top: 0;
  }

  .sobre-text .sobre-intro {
    margin-bottom: 30px;

    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.2;
  }

  .sobre-text p {
    max-width: 100%;

    font-size: 16px;
    line-height: 1.7;
  }

  /* ELEMENTOS GEOMÉTRICOS */

  #sobre::before {
    width: 260px;
    height: 120px;

    left: -80px;
    bottom: 100px;

    opacity: 0.04;
  }

  #sobre::after {
    width: 120px;
    height: 120px;

    left: 25%;
    bottom: 50px;

    opacity: 0.06;
  }

  .sobre-title h2 {
    font-size: clamp(46px, 13vw, 64px);
  }
}
