/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 50;

  border-bottom: 1px solid rgba(203, 213, 225, 0.6);

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header__nav {
  max-width: 1280px;

  height: 68px;

  margin: 0 auto;

  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   LOGO
   ========================================================= */

.site-header__logo {
  display: flex;
  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #172033;
}

.site-header__logo img {
  display: block;

  width: auto;
  height: 40px;

  object-fit: contain;
}

.site-header__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 10px;

  background: #172033;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.site-header__name {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;

  color: #172033;
}

/* =========================================================
   MENU DESKTOP
   ========================================================= */

.site-header__menu {
  display: flex;
  align-items: center;

  gap: 32px;

  margin-left: auto;
  margin-right: 32px;
}

.site-header__menu a {
  font-size: 14px;
  font-weight: 500;

  color: #64748b;

  text-decoration: none;

  transition: color 0.25s ease;
}

.site-header__menu a:hover {
  color: #172033;
}

/* =========================================================
   BOTÃO ORÇAMENTO
   ========================================================= */

.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 20px;

  border-radius: 999px;

  background: #172033;

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-header__button:hover {
  background: #111827;

  transform: translateY(-1px);
}

.site-header__button svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   BOTÃO MOBILE
   ========================================================= */

.site-header__mobile-button {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

  border: 0;

  border-radius: 10px;

  background: transparent;

  cursor: pointer;
}

.site-header__mobile-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: #172033;

  border-radius: 2px;
}

/* =========================================================
   MENU MOBILE
   ========================================================= */

.site-header__mobile-menu {
  display: none;
}

/* =========================================
   DEPOIMENTOS
========================================= */

.depoimentos {
  padding: 80px 20px;
  background: #e7f6ff;
}

.depoimentos .container {
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos .section-label {
  text-align: left;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.depoimentos h2 {
  margin: 0 0 50px;
  text-align: left;
  font-size: 40px;
  line-height: 1.2;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.depoimento-card {
  margin: 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.depoimento-estrelas {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.depoimento-estrelas .active {
  font-size: 20px;
  color: #419bd4;
  font-weight: bolder;
}

.depoimento-card p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid #ccc;
}

.depoimento-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.depoimento-card footer strong {
  font-size: 16px;
}

.depoimento-card footer span {
  font-size: 14px;
}

/* ========================================
   NOSSO PROCESSO
======================================== */

.processo {
  padding: 60px 0 0;
  background: #ffffff;
}

.processo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Cabeçalho */

.processo-header {
  text-align: center;
  max-width: 760px;
}

.processo-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: left;
}

.processo-subtitulo {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0;
  text-align: left;
}

/* Layout */

.processo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Imagem */

.processo-imagem {
  position: relative;
}

.processo-imagem img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  min-height: 560px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

/* Lista de etapas */

.processo-etapas {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.processo-etapa {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.processo-etapa:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Número */

.processo-numero {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8f2ff;
  color: #2563eb;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texto */

.processo-etapa-titulo {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.processo-etapa-descricao {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */

.servicos {
  padding: 100px 24px;
  background: #e7f6ff;
}

.servicos__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */

.servicos__header {
  max-width: 760px;
  margin: 0 0 45px;
  text-align: center;
}

.servicos__titulo {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #172033;
  text-align: left;
}

.servicos__subtitulo {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #172033;
  text-align: left;
  font-weight: 700;
}

/* Grid */

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */

.servico-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

/* Ícone */

.servico-card__icone {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  margin-bottom: 28px;

  background: #419bd4;
  border-radius: 16px;

  color: #ffffff;
}

.servico-card__icone svg {
  width: 28px;
  height: 28px;
}

/* Título */

.servico-card__titulo {
  margin: 0 0 14px;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;

  color: #172033;
}

/* Descrição */

.servico-card__descricao {
  margin: 0;

  font-size: 15px;
  line-height: 1.7;

  color: #64748b;
}

/* Botão */

.servico-card__botao {
  display: inline-flex;
  align-items: center;

  margin-top: auto;
  padding-top: 24px;

  font-size: 15px;
  line-height: 1;
  font-weight: 600;

  color: #2563eb;
  text-decoration: none;

  transition: color 0.2s ease;
}

.servico-card__botao:hover {
  color: #1d4ed8;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.beneficios {
  padding: 64px 0 80px;
  background: #ffffff;
}

.beneficios__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.beneficio-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.beneficio-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.beneficio-card__icone {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  background: #eff6ff;
  border-radius: 12px;

  color: #2563eb;
}

.beneficio-card__icone svg {
  width: 20px;
  height: 20px;
}

.beneficio-card__titulo {
  margin: 16px 0 0;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;

  color: #172033;
}

.beneficio-card__descricao {
  margin: 6px 0 0;

  font-size: 14px;
  line-height: 1.6;

  color: #64748b;
}

/* =========================================================
   TRABALHOS REALIZADOS
   ========================================================= */

.trabalhos-realizados {
  padding: 80px 0;
  background: #fff;
}

.trabalhos-realizados__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Cabeçalho */

.trabalhos-realizados__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.trabalhos-realizados__title {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #172033;
}

.trabalhos-realizados__description {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

/* =========================================================
   GRID
   ========================================================= */

.trabalhos-realizados__grid {
  display: grid;

  /* 6 colunas para permitir o layout personalizado */
  grid-template-columns: repeat(6, 1fr);

  /* 2 linhas para a primeira parte + 1 linha inferior */
  grid-template-rows: 250px 250px 220px;

  gap: 16px;
}

/* =========================================================
   CARDS
   ========================================================= */

.trabalho-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;

  border-radius: 18px;
  background: #f1f5f9;
}

/* =========================================================
   POSIÇÃO DOS CARDS
   ========================================================= */

/* 1 - Grande */
.trabalho-card:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

/* 2 - Pequeno superior direito */
.trabalho-card:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1;
}

/* 3 - Pequeno inferior direito */
.trabalho-card:nth-child(3) {
  grid-column: 4 / 7;
  grid-row: 2;
}

/* 4 - Inferior esquerdo */
.trabalho-card:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3;
}

/* 5 - Inferior centro */
.trabalho-card:nth-child(5) {
  grid-column: 3 / 5;
  grid-row: 3;
}

/* 6 - Inferior direito */
.trabalho-card:nth-child(6) {
  grid-column: 5 / 7;
  grid-row: 3;
}

/* =========================================================
   IMAGEM
   ========================================================= */

.trabalho-card__image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.trabalho-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.trabalho-card:hover .trabalho-card__image img {
  transform: scale(1.04);
}

/* =========================================================
   GRADIENTE + TEXTO
   ========================================================= */

.trabalho-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 2;

  padding: 24px;
  padding-top: 70px;

  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0)
  );
}

.trabalho-card__type {
  display: block;

  margin-bottom: 6px;

  font-size: 13px;
  font-weight: 600;

  color: #fff;
}

.trabalho-card__title {
  margin: 0;

  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;

  color: #fff;
}

/* =========================================================
   CONTATO
   ========================================================= */

.contato {
  padding: 80px 0;
  background: #fff;
}

.contato__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
}

.contato__box {
  position: relative;
  overflow: hidden;

  padding: 64px;

  border-radius: 40px;

  background: linear-gradient(135deg, #172033, #3b82b6);
}

.contato__background {
  position: absolute;
  inset: 0;

  opacity: 0.3;
  pointer-events: none;

  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.35),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(126, 200, 227, 0.5),
      transparent 40%
    );
}

.contato__content {
  position: relative;
  z-index: 1;

  text-align: center;
}

.contato__title {
  max-width: 700px;

  margin: 0 auto;

  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;

  color: #fff;
}

.contato__description {
  max-width: 600px;

  margin: 16px auto 0;

  font-size: 18px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.85);
}

.contato__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;

  margin-top: 32px;
}

.contato__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 28px;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contato__button:hover {
  transform: translateY(-2px);
}

.contato__button svg {
  width: 20px;
  height: 20px;
}

.contato__button--whatsapp {
  background: #fff;
  color: #172033;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contato__button--whatsapp:hover {
  background: #eaf6ff;
}

.contato__button--telefone {
  border: 1px solid rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.1);

  color: #fff;

  backdrop-filter: blur(8px);
}

.contato__button--telefone:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   banner
   ========================================================= */

.banner {
  position: relative;
  overflow: hidden;

  padding: 100px 0 80px;

  background: linear-gradient(135deg, #f4fbff 0%, #e9f7fc 50%, #dff2fa 100%);
}

.banner__background {
  position: absolute;
  inset: 0;

  pointer-events: none;
  opacity: 0.6;

  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(126, 200, 227, 0.4),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(59, 130, 182, 0.25),
      transparent 45%
    );
}

.banner__container {
  position: relative;
  z-index: 1;

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: center;
}

/* =========================================================
   CONTEÚDO
   ========================================================= */

.banner__content {
  min-width: 0;
}

.banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 16px;

  border: 1px solid #dbe4ec;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);

  color: #172033;

  font-size: 12px;
  font-weight: 600;

  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);

  backdrop-filter: blur(8px);
}

.banner__badge svg {
  width: 15px;
  height: 15px;

  color: #3b82b6;
}

.banner__title {
  max-width: 700px;

  margin: 24px 0 0;

  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;

  color: #172033;
}

.banner__highlight {
  position: relative;
  z-index: 1;

  display: inline-block;
}

.banner__highlight::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 2px;

  height: 12px;

  z-index: -1;

  border-radius: 999px;

  background: rgba(126, 200, 227, 0.6);
}

.banner__description {
  max-width: 620px;

  margin: 24px 0 0;

  font-size: 18px;
  line-height: 1.7;

  color: #64748b;
}

/* =========================================================
   BOTÕES
   ========================================================= */

.banner__buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}

.banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 28px;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;
}

.banner__button svg {
  width: 20px;
  height: 20px;
}

.banner__button--primary {
  background: #172033;

  color: #fff;

  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.banner__button--primary:hover {
  transform: translateY(-2px);

  background: #111827;
}

.banner__button--secondary {
  border: 1px solid #dbe4ec;

  background: #fff;

  color: #172033;
}

.banner__button--secondary:hover {
  border-color: #3b82b6;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.banner__benefits {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 32px;

  margin-top: 40px;
}

.banner__benefit {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #64748b;

  font-size: 14px;
}

.banner__benefit svg {
  width: 16px;
  height: 16px;

  flex-shrink: 0;

  color: #3b82b6;
}

/* =========================================================
   IMAGEM
   ========================================================= */

.banner__visual {
  position: relative;
}

.banner__glow {
  position: absolute;

  inset: -24px;

  z-index: 0;

  border-radius: 40px;

  background: rgba(126, 200, 227, 0.3);

  filter: blur(40px);
}

.banner__image {
  position: relative;
  z-index: 1;

  overflow: hidden;

  border: 1px solid #fff;

  border-radius: 32px;

  box-shadow: 0 20px 50px rgba(59, 130, 182, 0.18);
}

.banner__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

/* =========================================================
   CARD CLIENTES
   ========================================================= */

.banner__customers {
  position: absolute;

  left: 24px;
  bottom: -24px;

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 16px;

  border: 1px solid #dbe4ec;
  border-radius: 16px;

  background: #fff;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.banner__stars {
  display: flex;

  gap: 2px;
}

.banner__stars svg {
  width: 16px;
  height: 16px;

  color: #3b82b6;
}

.banner__customer-text {
  display: flex;
  flex-direction: column;
}

.banner__customer-text strong {
  color: #172033;

  font-size: 14px;
  line-height: 1;
}

.banner__customer-text span {
  margin-top: 4px;

  color: #64748b;

  font-size: 12px;
}

.site-footer {
  padding: 64px 0 24px;
  background: #172033;
  color: #fff;
}

.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 48px;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-footer__logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.site-footer__logo span {
  font-size: 18px;
  font-weight: 700;
}

.site-footer__description {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  gap: 100px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__column a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #fff;
}

/* =========================================================
   ANTES E DEPOIS
   ========================================================= */

.antes-depois {
  padding: 80px 0;
  background: #fff;
}

.antes-depois__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.antes-depois__header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.antes-depois__title {
  margin: 0;
  color: #172033;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
}

.antes-depois__description {
  margin: 16px auto 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.6;
}

.antes-depois__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.antes-depois__item {
  min-width: 0;
}

.antes-depois__compare {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: #e2e8f0;
  user-select: none;
  touch-action: none;
}

.antes-depois__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.antes-depois__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.antes-depois__image--after {
  clip-path: inset(0 0 0 50%);
}

.antes-depois__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(23, 32, 51, 0.12);
  pointer-events: none;
}

.antes-depois__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
  cursor: ew-resize;
  pointer-events: auto;
}

.antes-depois__handle span {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.antes-depois__label {
  position: absolute;
  top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.antes-depois__label--before {
  left: 16px;
}

.antes-depois__label--after {
  right: 16px;
}

.antes-depois__name {
  margin: 16px 4px 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}
