/* =====================================================
   VARIÁVEIS
===================================================== */

:root {
  --black: #050505;
  --black-light: #151515;

  --yellow: #ffc000;
  --yellow-dark: #e3a900;

  --white: #ffffff;

  --background: #f7f7f7;
  --text: #151515;
  --muted: #6d6d6d;

  --border: #e8e8e8;

  --container: 1180px;
}

/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;

  background: var(--background);

  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}

a {
  text-decoration: none;

  color: inherit;
}

img {
  max-width: 100%;
}

/* =====================================================
   CONTAINER
===================================================== */

.container {
  width: min(calc(100% - 48px), var(--container));

  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  min-height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* =====================================================
   LOGO
===================================================== */

.logo {
  display: flex;

  align-items: center;
}

.logo img {
  width: 175px;

  display: block;
}

/* =====================================================
   MENU
===================================================== */

.nav-links {
  display: flex;

  align-items: center;

  gap: 32px;
}

.nav-left {
  display: flex;

  align-items: center;

  gap: 45px;
}

.logo {
  display: flex;

  align-items: center;

  padding: 0px 14px;

  background: #ffffff;

  border-radius: 6px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo img {
  width: 175px;

  display: block;
}

.nav-links a {
  position: relative;

  padding: 32px 0;

  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a.active {
  color: var(--yellow);
}

.nav-links a.active::after {
  content: '';

  position: absolute;

  left: 0;
  right: 0;

  bottom: 23px;

  height: 2px;

  background: var(--yellow);
}

/* =====================================================
   BOTÃO HEADER
===================================================== */

.nav-button {
  padding: 13px 20px;

  background: var(--yellow);

  color: #000000;

  border-radius: 3px;

  font-size: 12px;

  font-weight: 800;

  transition: 0.25s;
}

.nav-button:hover {
  background: #ffffff;

  transform: translateY(-2px);
}

/* =====================================================
   MENU MOBILE
===================================================== */

.menu-toggle {
  display: none;

  background: transparent;

  border: none;

  cursor: pointer;

  padding: 5px;
}

.menu-toggle span {
  display: block;

  width: 27px;

  height: 2px;

  margin: 5px;

  background: #ffffff;

  transition: 0.2s;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  height: 730px;

  overflow: hidden;

  color: #ffffff;
}

/* =====================================================
   IMAGEM DE FUNDO
===================================================== */

.hero-background {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url('assets/home_page.jpeg');

  background-size: cover;

  /*
    Desktop:
    deixa o trabalhador mais para o lado direito.
  */

  background-position: 65% center;

  background-repeat: no-repeat;

  z-index: 0;
}

/* =====================================================
   ESCURECIMENTO
===================================================== */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.58) 42%,
    rgba(0, 0, 0, 0.22) 100%
  );

  z-index: 1;
}

/* =====================================================
   DEGRADÊ INFERIOR
===================================================== */

.hero-overlay::after {
  content: '';

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 180px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

/* =====================================================
   CONTEÚDO HERO
===================================================== */

.hero-content {
  position: relative;

  z-index: 2;

  height: 100%;

  display: flex;

  align-items: center;
}

.hero-text {
  width: 100%;

  max-width: 700px;

  padding-top: 20px;
}

/* =====================================================
   FRASE PEQUENA
===================================================== */

.hero-eyebrow {
  display: block;

  margin-bottom: 15px;

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.2px;

  color: #ffffff;
}

/* =====================================================
   TÍTULO
===================================================== */

.hero h1 {
  margin: 0;

  font-size: 58px;

  line-height: 0.98;

  font-weight: 900;

  letter-spacing: -1.5px;

  color: #ffffff;
}

.hero h1 span {
  color: var(--yellow);
}

/* =====================================================
   DESCRIÇÃO
===================================================== */

.hero p {
  margin-top: 25px;

  margin-bottom: 25px;

  font-size: 15px;

  line-height: 1.55;

  color: #ffffff;
}

/* =====================================================
   BOTÃO HERO
===================================================== */

.hero-buttons {
  margin-top: 20px;

  display: flex;

  gap: 15px;
}

.hero-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 16px 20px;

  background: var(--yellow);

  color: #000000;

  border-radius: 5px;

  font-size: 13px;

  font-weight: 800;

  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #ffd033;

  transform: translateY(-2px);
}

.button-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;
}

/* =====================================================
   DIFERENCIAIS - WRAPPER

   ESTE É O PRINCIPAL AJUSTE.

   O bloco não fica mais preso dentro
   do Hero.
===================================================== */

.hero-features-wrapper {
  position: relative;

  z-index: 10;

  margin-top: -80px;

  pointer-events: none;
}

/* =====================================================
   CAIXA DE DIFERENCIAIS
===================================================== */

.hero-features {
  min-height: 180px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  background: #151515;

  border-radius: 0;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

  pointer-events: auto;
}

/* =====================================================
   CADA DIFERENCIAL
===================================================== */

.hero-feature {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 30px;

  color: #ffffff;
}

/* =====================================================
   DIVISÓRIA DESKTOP
===================================================== */

.hero-feature:not(:last-child)::after {
  content: '';

  position: absolute;

  top: 25px;
  bottom: 25px;

  right: 0;

  width: 1px;

  background: #3b3b3b;
}

/* =====================================================
   ÍCONES
===================================================== */

.feature-icon {
  flex: 0 0 auto;

  width: 54px;

  height: 54px;

  color: var(--yellow);
}

.feature-icon svg {
  width: 100%;

  height: 100%;
}

/* =====================================================
   CONTEÚDO DIFERENCIAL
===================================================== */

.feature-content {
  min-width: 0;
}

.hero-feature h3 {
  margin-bottom: 6px;

  font-size: 17px;

  line-height: 1.25;

  font-weight: 800;

  color: #ffffff;
}

.hero-feature p {
  margin: 0;

  font-size: 12px;

  line-height: 1.45;

  color: #ffffff;
}

/* =====================================================
   WHATSAPP
===================================================== */

.wppFloat {
  position: fixed;

  right: 20px;

  bottom: 25px;

  z-index: 999;

  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #25d366;

  border-radius: 50%;

  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wppFloat img {
  width: 70px;

  height: 70px;

  display: block;
}

.wppFloat:hover {
  transform: scale(1.06);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* =====================================================
   SEÇÕES
===================================================== */

.section {
  padding: 115px 0;
}

.section-header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 45px;
}

.section-header h2 {
  margin-top: 12px;

  font-size: clamp(32px, 4vw, 50px);

  line-height: 1.08;

  letter-spacing: -2px;
}

.section-header p {
  max-width: 420px;

  color: var(--muted);

  font-size: 14px;
}

/* =====================================================
   EYEBROW
===================================================== */

.eyebrow {
  display: inline-block;

  color: var(--yellow);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;
}

.eyebrow.dark {
  color: #000000;
}

/* =====================================================
   SERVIÇOS
===================================================== */

.services {
  background: var(--background);

  /*
    Espaço para o bloco de diferenciais
    terminar antes dos serviços.
  */

  padding-top: 115px;
}

/* =====================================================
   BOTÃO DENTRO DO CARD
===================================================== */

.service-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 25px;

  padding: 14px 20px;

  background: var(--yellow);

  color: #000000;

  border-radius: 5px;

  font-size: 13px;

  font-weight: 800;

  transition: all 0.25s ease;
}

.service-cta:hover {
  background: #ffd033;

  transform: translateY(-2px);
}

.service-cta span {
  color: #000000;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card:first-child:last-child {
  grid-column: 1 / -1;

  width: 100%;

  max-width: 440px;

  justify-self: center;
}

.service-card {
  position: relative;

  min-height: 340px;

  padding: 30px 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 5px;

  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
  background: #000000;

  color: #ffffff;

  border-color: #000000;
}

.service-number {
  position: absolute;

  top: 20px;

  right: 20px;

  color: #aaaaaa;

  font-size: 11px;

  font-weight: 800;
}

.service-icon {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 60px;

  background: var(--yellow);

  color: #000000;

  font-size: 23px;

  font-weight: 800;

  border-radius: 3px;
}

.service-card h3 {
  margin-bottom: 10px;

  font-size: 20px;

  line-height: 1.25;
}

.service-card p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.55;
}

.service-card.featured p {
  color: #aaaaaa;
}

.service-card a {
  display: inline-flex;

  gap: 10px;

  margin-top: 25px;

  font-size: 12px;

  font-weight: 800;
}

.service-card a span {
  color: var(--yellow);
}

/* =====================================================
   SOBRE
===================================================== */

.about {
  background: #ffffff;
}

.about-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;

  align-items: center;
}

.about-visual {
  position: relative;

  min-height: 450px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.about-box {
  width: 420px;

  height: 420px;

  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #000000;
}

.about-box::after {
  content: '';

  position: absolute;

  width: 280px;

  height: 280px;

  border: 1px solid rgba(255, 192, 0, 0.35);

  border-radius: 50%;
}

.big-logo {
  color: #ffffff;

  font-size: 90px;

  font-weight: 800;

  letter-spacing: -8px;
}

.big-logo span {
  color: var(--yellow);
}

.about-label {
  position: absolute;

  left: 30px;

  bottom: 30px;

  color: var(--yellow);

  font-size: 10px;

  letter-spacing: 3px;

  font-weight: 700;
}

.experience {
  position: absolute;

  right: 0;

  bottom: 10px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px 20px;

  background: var(--yellow);

  color: #000000;
}

.experience strong {
  font-size: 25px;
}

.experience span {
  font-size: 10px;

  font-weight: 600;

  line-height: 1.3;
}

.about-text h2 {
  margin-top: 12px;

  font-size: clamp(32px, 4vw, 50px);

  line-height: 1.08;

  letter-spacing: -2px;
}

.about-text h2 strong {
  color: var(--yellow-dark);
}

.about-text p {
  max-width: 620px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 14px;
}

.about-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 13px 25px;

  margin-top: 28px;
}

.about-list div {
  font-size: 12px;

  font-weight: 700;
}

.about-list span {
  margin-right: 7px;

  padding: 3px 5px;

  background: var(--yellow);
}

/* =====================================================
   BOTÕES GERAIS
===================================================== */

.btn {
  min-height: 50px;

  padding: 0 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  border-radius: 4px;

  font-size: 13px;

  font-weight: 800;

  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  margin-top: 28px;

  background: #000000;

  color: #ffffff;
}

/* =====================================================
   PROJETOS
===================================================== */

.projects {
  background: var(--background);
}

.projects-grid {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  grid-template-rows: 230px 230px;

  gap: 16px;
}

.project {
  position: relative;

  overflow: hidden;

  border-radius: 5px;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}

.project::before {
  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.project-large {
  grid-row: span 2;

  background-image: url('assets/projeto-instalacao.jpeg');
}

.project-two {
  background-image: url('assets/projeto-manutencao.jpeg');
}

.project-three {
  background-image: url('assets/projeto-seguranca.jpeg');
}

.project-content {
  position: absolute;

  left: 25px;

  bottom: 23px;

  z-index: 2;

  color: #ffffff;
}

.project-content span {
  color: var(--yellow);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.project-content h3 {
  margin-top: 5px;

  font-size: 22px;
}

/* =====================================================
   PARCEIROS
===================================================== */

.partners {
  background: #ffffff;
}

.partners-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 16px;
}

.partner-item {
  min-height: 100px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 15px;

  text-align: center;

  background: var(--background);

  border: 1px solid var(--border);

  border-radius: 5px;

  color: var(--muted);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.3px;

  transition: 0.25s;
}

.partner-item:hover {
  border-color: var(--yellow);

  color: var(--text);

  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-item {
    min-height: 85px;

    font-size: 11px;
  }
}

/* =====================================================
   CONTATO
===================================================== */

.contact {
  padding: 80px 0;

  background: #000000;

  color: #ffffff;
}

.contact-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.contact h2 {
  max-width: 650px;

  margin-top: 12px;

  font-size: clamp(30px, 4vw, 46px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.contact p {
  margin-top: 10px;

  color: #999999;

  font-size: 14px;
}

.contact-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);

  color: #000000;
}

.btn-outline-white {
  color: #ffffff;

  border: 1px solid #555555;
}

.btn-outline-white:hover {
  border-color: var(--yellow);

  color: var(--yellow);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  padding: 65px 0 20px;

  background: #0a0a0a;

  color: #ffffff;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 0.7fr 1fr;

  gap: 70px;

  padding-bottom: 50px;
}

.footer-logo {
  width: 165px;

  margin-bottom: 15px;
}

.footer p,
.footer span,
.footer a {
  color: #777777;

  font-size: 12px;
}

.footer p {
  max-width: 300px;
}

.footer h4 {
  margin-bottom: 18px;

  font-size: 13px;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.copyright {
  padding-top: 18px;

  border-top: 1px solid #222222;

  color: #555555;

  font-size: 10px;
}

/* =====================================================
   ANIMAÇÕES
===================================================== */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 980px) {
  .nav-links,
  .nav-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 75px;
  }

  .nav.menu-open .nav-links {
    position: absolute;

    top: 75px;

    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 20px 24px;

    background: #111111;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.menu-open .nav-links a {
    width: 100%;

    padding: 10px 0;
  }

  .nav.menu-open .nav-links a.active::after {
    display: none;
  }

  .hero {
    height: 700px;
  }

  .hero-text {
    max-width: 650px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-features {
    width: calc(100% - 32px);
  }

  .hero-feature {
    padding: 25px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-visual {
    min-height: 430px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  /* =================================================
     CONTAINER
  ================================================= */

  .container {
    width: calc(100% - 32px);
  }

  /* =================================================
     HEADER
  ================================================= */

  .header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);

    border-bottom: none;
  }

  .nav {
    min-height: 70px;

    justify-content: space-between;
  }

  .logo img {
    width: 110px;
  }

  .menu-toggle {
    display: block;

    margin-left: 0;
  }

  /* =================================================
     HERO
  ================================================= */

  .hero {
    height: 600px;

    min-height: 600px;

    overflow: hidden;
  }

  /* =================================================
     IMAGEM MOBILE

     A imagem é posicionada de forma que
     o trabalhador fique mais para o lado
     direito da tela.
  ================================================= */

  .hero-background {
    background-size: cover;

    background-position: 0% center;
  }

  /* =================================================
     OVERLAY MOBILE
  ================================================= */

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .hero-overlay::after {
    height: 160px;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  }

  /* =================================================
     CONTEÚDO HERO
  ================================================= */

  .hero-content {
    height: 100%;

    display: flex;

    align-items: flex-start;

    padding-top: 170px;
  }

  .hero-text {
    width: 100%;

    max-width: 350px;

    padding: 0;
  }

  /* =================================================
     EYEBROW
  ================================================= */

  .hero-eyebrow {
    margin-bottom: 10px;

    font-size: 12px;

    line-height: 1.2;
  }

  /* =================================================
     TÍTULO MOBILE
  ================================================= */

  .hero h1 {
    font-size: 39px;

    line-height: 1.02;

    letter-spacing: -0.7px;
  }

  /* =================================================
     TEXTO
  ================================================= */

  .hero p {
    margin-top: 20px;

    margin-bottom: 20px;

    max-width: 300px;

    font-size: 13px;

    line-height: 1.45;
  }

  /* =================================================
     BOTÃO
  ================================================= */

  .hero-buttons {
    margin-top: 18px;
  }

  .hero-button {
    padding: 15px 18px;

    font-size: 12px;

    border-radius: 4px;
  }

  /* =================================================
     DIFERENCIAIS MOBILE

     AGORA É UM ÚNICO QUADRADO PRETO.

     NÃO É GRID.

     NÃO TEM DIVISÓRIA.

     NÃO TEM CADA ITEM COMO UMA LINHA.
  ================================================= */

  .hero-features-wrapper {
    margin-top: -60px;

    position: relative;

    z-index: 20;
  }

  .hero-features {
    width: calc(100% - 32px);

    min-height: 0;

    display: flex;

    flex-direction: column;

    background: #151515;

    border-radius: 7px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  /* =================================================
     ITEM DO QUADRADO

     ÍCONE EM CIMA
     TÍTULO ABAIXO
     TEXTO ABAIXO
  ================================================= */

  .hero-feature {
    display: block;

    width: 100%;

    padding: 25px 16px 25px;

    min-height: 0;

    text-align: left;
  }

  /*
     Sem linhas horizontais.
  */

  .hero-feature::after,
  .hero-feature:not(:last-child)::after {
    display: none;

    content: none;
  }

  /* =================================================
     ÍCONE
  ================================================= */

  .feature-icon {
    width: 48px;

    height: 48px;

    margin: 0 0 12px 0;
  }

  /* =================================================
     CONTEÚDO
  ================================================= */

  .feature-content {
    width: 100%;
  }

  .hero-feature h3 {
    margin-bottom: 5px;

    font-size: 17px;

    line-height: 1.25;
  }

  .hero-feature p {
    margin: 0;

    max-width: 100%;

    font-size: 11px;

    line-height: 1.45;
  }

  /* =================================================
     SERVIÇOS

     O espaço vem naturalmente depois
     do quadrado de diferenciais.
  ================================================= */

  .services {
    padding-top: 85px;

    padding-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    max-width: 100%;
  }

  .service-card {
    min-height: 300px;

    padding: 26px 22px;
  }

  .service-icon {
    margin-bottom: 45px;
  }

  /* =================================================
     SEÇÕES
  ================================================= */

  .section {
    padding: 80px 0;
  }

  .section-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 34px;

    letter-spacing: -1px;
  }

  /* =================================================
     SOBRE
  ================================================= */

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-box {
    width: 100%;

    height: 350px;
  }

  .experience {
    right: -5px;
  }

  /* =================================================
     PROJETOS
  ================================================= */

  .projects-grid {
    grid-template-columns: 1fr;

    grid-template-rows:
      250px
      210px
      210px;
  }

  .project-large {
    grid-row: auto;
  }

  /* =================================================
     CONTATO
  ================================================= */

  .contact-content {
    flex-direction: column;

    align-items: flex-start;
  }

  .contact-buttons {
    width: 100%;
  }

  .contact-buttons .btn {
    width: 100%;
  }

  /* =================================================
     FOOTER
  ================================================= */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  /* =================================================
     WHATSAPP
  ================================================= */

  .wppFloat {
    width: 55px;

    height: 55px;

    right: 15px;

    bottom: 15px;
  }

  .wppFloat img {
    width: 64px;

    height: 64px;
  }
}

/* =====================================================
   DEPOIMENTOS / AVALIAÇÕES
   Classes com prefixo "tm-" para nunca colidir com
   nenhuma outra classe existente no site.
===================================================== */

.testimonials {
  background: var(--background);
}

.tm-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.tm-card {
  display: flex;

  flex-direction: column;

  padding: 30px 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 8px;

  transition: 0.25s;
}

.tm-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tm-stars {
  display: flex;

  gap: 3px;

  margin-bottom: 16px;

  color: var(--yellow);

  font-size: 15px;

  letter-spacing: 2px;
}

.tm-quote {
  flex: 1;

  margin-bottom: 22px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.65;
}

.tm-quote::before {
  content: '\201C';
}

.tm-quote::after {
  content: '\201D';
}

.tm-author {
  display: flex;

  align-items: center;

  gap: 12px;

  padding-top: 18px;

  border-top: 1px solid var(--border);
}

.tm-avatar {
  flex: 0 0 auto;

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #151515;

  color: var(--yellow);

  border-radius: 50%;

  font-size: 14px;

  font-weight: 800;
}

.tm-author-info {
  min-width: 0;
}

.tm-author-name {
  display: block;

  font-size: 13px;

  font-weight: 800;

  color: var(--text);
}

.tm-author-role {
  display: block;

  margin-top: 2px;

  font-size: 11px;

  color: var(--muted);
}

/* =====================================================
   PERGUNTAS FREQUENTES (FAQ)
   Classes com prefixo "faq-" para nunca colidir com
   nenhuma outra classe existente no site.
===================================================== */

.faq {
  background: #ffffff;
}

.faq-list {
  max-width: 780px;

  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 22px 4px;

  background: transparent;

  border: none;

  text-align: left;

  cursor: pointer;
}

.faq-question span {
  font-size: 15px;

  font-weight: 700;

  color: var(--text);
}

.faq-icon {
  flex: 0 0 auto;

  width: 26px;

  height: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--background);

  border-radius: 50%;

  color: var(--text);

  font-size: 16px;

  font-weight: 700;

  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.active .faq-icon {
  background: var(--yellow);

  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 4px 22px;

  max-width: 640px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.65;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .faq-question {
    padding: 18px 2px;
  }

  .faq-question span {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 2px 18px;

    font-size: 12.5px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 980px) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .tm-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .tm-card {
    padding: 26px 22px;
  }
}

/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 380px) {
  .hero {
    height: 610px;

    min-height: 610px;
  }

  /*
    Mantém a foto deslocada para o lado
    desejado.
  */

  .hero-background {
    background-position: 0% center;
  }

  .hero-content {
    padding-top: 155px;
  }

  .hero h1 {
    font-size: 35px;

    line-height: 1.02;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero p {
    font-size: 12px;

    max-width: 285px;
  }

  .hero-features-wrapper {
    margin-top: -55px;
  }

  .hero-feature {
    padding: 22px 16px 23px;
  }

  .feature-icon {
    width: 43px;

    height: 43px;
  }

  .hero-feature h3 {
    font-size: 15px;
  }

  .hero-feature p {
    font-size: 10px;
  }
}
/* =====================================================
   PÁGINA DE PROJETOS — CSS COMPLETO
   Este arquivo já resolve tudo sozinho: não precisa
   colar nada dentro do style.css.
===================================================== */

/* =====================================================
   HEADER EM PÁGINAS INTERNAS (sem o hero atrás)
   O .header original é position:absolute pensado pra
   ficar sobre a foto do hero. Aqui ele precisa ocupar
   espaço normal, senão cobre o conteúdo de baixo.
===================================================== */

.header-inner {
  position: relative !important;

  background: #151515 !important;

  border-bottom: none !important;
}

/* =====================================================
   CABEÇALHO DA PÁGINA
===================================================== */

.page-header {
  padding: 60px 0 40px;

  background: #151515;

  color: #ffffff;
}

.page-header h1 {
  margin-top: 12px;

  font-size: clamp(32px, 4vw, 46px);

  letter-spacing: -1.5px;

  color: #ffffff;
}

.page-header p {
  max-width: 520px;

  margin-top: 14px;

  color: #aaaaaa;

  font-size: 14px;
}

/* =====================================================
   SEÇÃO DA LISTA
===================================================== */

.projects-full {
  background: var(--background);

  padding: 70px 0 100px;
}

/* =====================================================
   GRID DE PROJETOS — FORMATO QUADRADO E RESPONSIVO

   auto-fill + minmax cria quantas colunas couberem,
   e aspect-ratio 1/1 mantém cada card quadrado em
   qualquer tamanho de tela, sem precisar de media query.
===================================================== */

.pj-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));

  gap: 20px;
}

.pj-card {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 8px;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-color: #1a1a1a;

  transition: transform 0.3s ease;
}

.pj-card:hover {
  transform: translateY(-4px);
}

/* Camada escura para o texto ficar sempre legível,
   independente do brilho da foto */

.pj-card::before {
  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.05) 75%
  );
}

.pj-card-content {
  position: absolute;

  left: 20px;

  right: 20px;

  bottom: 18px;

  z-index: 2;

  color: #ffffff;
}

.pj-card-content span {
  display: inline-block;

  color: var(--yellow);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.pj-card-content h3 {
  margin-top: 6px;

  font-size: 18px;

  line-height: 1.25;
}

.pj-card-desc {
  margin-top: 6px;

  font-size: 12px;

  line-height: 1.45;

  color: #dddddd;

  /* limita a descrição a 2 linhas, com "..." no final */

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.pj-loading {
  grid-column: 1 / -1;

  text-align: center;

  padding: 60px 0;

  color: var(--muted);

  font-size: 14px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .page-header {
    padding: 45px 0 30px;
  }

  .projects-full {
    padding: 45px 0 70px;
  }

  .pj-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

    gap: 14px;
  }

  .pj-card-content {
    left: 14px;

    right: 14px;

    bottom: 14px;
  }

  .pj-card-content h3 {
    font-size: 15px;
  }
}
