/* ==========================================================
   MV MANANCIAL VICTORY
   CSS PRINCIPAL
   Identidade baseada nas cores da marca:
   Vermelho + Preto/Grafite + Branco
========================================================== */

:root {
  --brand-red: #c81a1d;
  --brand-red-dark: #971316;
  --brand-red-light: #e12b2f;

  --black: #080b11;
  --dark: #0d1119;
  --dark-soft: #131925;
  --card: #151c28;

  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #e8eaf0;
  --gray-300: #b9bec9;
  --gray-500: #858c99;
  --gray-700: #343b47;

  --border: rgba(255, 255, 255, 0.09);
  --border-red: rgba(200, 26, 29, 0.4);

  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --container: 1180px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

/* ==========================================================
   RESET
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--black);
  color: var(--gray-100);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* ==========================================================
   BOTÕES
========================================================== */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary,
.button--header {
  background: var(--brand-red);
  color: var(--white);
}

.button--primary:hover,
.button--header:hover {
  background: var(--brand-red-light);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--white {
  background: var(--white);
  color: var(--brand-red-dark);
}

.button--white:hover {
  background: var(--off-white);
}

/* ==========================================================
   HEADER MV
========================================================== */

.mv-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 80px;

  z-index: 1000;

  display: flex;
  align-items: center;

  background: rgba(8, 11, 17, 0.94);

  border-bottom: 1px solid rgba(200, 26, 29, 0.25);

  backdrop-filter: blur(14px);
}

/* ==========================================================
   CONTAINER
========================================================== */

.mv-header__container {
  width: min(calc(100% - 40px), 1180px);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

/* ==========================================================
   MARCA
========================================================== */

.mv-header__brand {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  text-decoration: none;
}

.mv-header__logo {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #ffffff;

  background: linear-gradient(145deg, #e12b2f, #971316);

  border: 1px solid rgba(255, 255, 255, 0.3);

  font-size: 0.8rem;
  font-weight: 900;

  box-shadow: 0 8px 25px rgba(200, 26, 29, 0.22);
}

.mv-header__brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.mv-header__brand-text strong {
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 900;

  text-transform: uppercase;
}

.mv-header__brand-text span {
  margin-top: 6px;

  color: #e12b2f;

  font-size: 0.58rem;
  font-weight: 900;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

/* ==========================================================
   NAVEGAÇÃO
========================================================== */

.mv-header__nav {
  display: flex;
  align-items: center;

  gap: 25px;
}

.mv-header__nav a {
  color: #b9bec9;

  font-size: 0.75rem;
  font-weight: 800;

  text-transform: uppercase;

  text-decoration: none;

  transition: color 0.25s ease;
}

.mv-header__nav a:hover {
  color: #ffffff;
}

/* ==========================================================
   AÇÕES
========================================================== */

.mv-header__actions {
  display: flex;
  align-items: center;

  gap: 12px;
}

/* ==========================================================
   INSTAGRAM
========================================================== */

.mv-header__social {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  border: 1px solid #343b47;

  color: #b9bec9;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.mv-header__social:hover {
  color: #e12b2f;

  border-color: #e12b2f;

  background: rgba(200, 26, 29, 0.08);
}

.mv-header__social svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
}

.mv-header__social .instagram-dot {
  fill: currentColor;
  stroke: none;
}

/* ==========================================================
   WHATSAPP
========================================================== */

.mv-header__whatsapp {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 21px;

  border-radius: 8px;

  background: #25d366;

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 900;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.mv-header__whatsapp:hover {
  background: #128c7e;

  transform: translateY(-2px);
}

/* ==========================================================
   BOTÃO MOBILE
========================================================== */

.mv-header__menu-btn {
  width: 44px;
  height: 44px;

  display: none;

  flex-direction: column;
  justify-content: center;

  gap: 5px;

  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.mv-header__menu-btn span {
  width: 100%;
  height: 2px;

  background: #ffffff;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mv-header__menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mv-header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mv-header__menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   MENU MOBILE
========================================================== */

.mv-mobile-menu {
  position: absolute;

  top: 80px;
  left: 0;

  width: 100%;

  display: none;
  flex-direction: column;

  gap: 20px;

  padding: 25px;

  background: #080b11;

  border-bottom: 1px solid rgba(200, 26, 29, 0.25);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.mv-mobile-menu.open {
  display: flex;
}

.mv-mobile-menu > a:not(.mv-mobile-menu__whatsapp) {
  color: #b9bec9;

  font-size: 0.82rem;
  font-weight: 800;

  text-transform: uppercase;

  text-decoration: none;
}

.mv-mobile-menu__socials {
  padding-top: 18px;

  display: flex;
  align-items: center;

  gap: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-mobile-menu__whatsapp {
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #25d366;

  color: #ffffff;

  font-size: 0.8rem;
  font-weight: 900;

  text-decoration: none;

  text-transform: uppercase;
}

/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;
  min-height: 720px;

  display: flex;
  align-items: center;

  padding-top: 82px;

  overflow: hidden;
  background: #f3efe9;
}

/* ==========================================================
   IMAGEM DE FUNDO
========================================================== */

.hero__bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

/* ==========================================================
   DEGRADÊ PARA LEITURA DO TEXTO
========================================================== */

.hero__shade {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    #f5f1eb 0%,
    rgba(245, 241, 235, 0.98) 20%,
    rgba(245, 241, 235, 0.9) 34%,
    rgba(245, 241, 235, 0.48) 48%,
    rgba(245, 241, 235, 0.05) 62%,
    transparent 75%
  );
}

/* ==========================================================
   CONTAINER
========================================================== */

.hero__content {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 40px), 1180px);
  min-height: 638px;

  margin: 0 auto;

  display: flex;
  align-items: center;
}

/* ==========================================================
   TEXTO
========================================================== */

.hero__copy {
  width: 54%;
  max-width: 640px;
}

/* ==========================================================
   PEQUENO TÍTULO
========================================================== */

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 20px;

  color: var(--brand-red);

  font-size: 0.82rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero .eyebrow::before {
  content: "";

  width: 45px;
  height: 2px;

  background: var(--brand-red);
}

/* ==========================================================
   TÍTULO PRINCIPAL
========================================================== */

.hero h1 {
  color: #111;

  font-size: clamp(3.1rem, 4.7vw, 5rem);
  font-weight: 900;

  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;

  color: var(--brand-red);
}

.hero h1 small {
  display: block;

  margin-top: 12px;

  color: #1c1c1c;

  font-size: 0.62em;
  font-weight: 500;

  line-height: 1.1;
}

/* ==========================================================
   DESCRIÇÃO
========================================================== */

.hero__copy > p {
  max-width: 540px;

  margin-top: 26px;

  color: #444;

  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================
   BOTÕES
========================================================== */

.hero__actions {
  display: flex;
  gap: 13px;

  margin-top: 30px;
}

.hero .button {
  min-height: 54px;

  padding: 0 25px;

  border-radius: 9px;

  font-size: 0.82rem;
  font-weight: 900;

  text-transform: uppercase;
}

.hero .button--primary {
  color: white;
  background: var(--brand-red);
}

.hero .button--primary:hover {
  background: var(--brand-red-light);
}

.hero .button--outline {
  color: #161616;

  background: rgba(255, 255, 255, 0.3);

  border: 1px solid #333;
}

.hero .button--outline:hover {
  color: white;
  background: #171717;
}

/* ==========================================================
   BENEFÍCIOS
========================================================== */

.hero__benefits {
  width: 100%;
  max-width: 560px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px 28px;

  margin-top: 30px;
  padding-top: 26px;

  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-benefit {
  display: flex;
  align-items: center;

  gap: 12px;
}

.hero-benefit strong {
  width: 34px;
  height: 34px;
  min-width: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--brand-red);

  border: 1px solid var(--brand-red);
  border-radius: 50%;

  font-size: 0.85rem;
  font-weight: 800;
}

.hero-benefit span {
  color: #222;

  font-size: 0.72rem;
  font-weight: 800;

  line-height: 1.3;

  text-transform: uppercase;
}

/* ==========================================================
   BENEFÍCIOS
========================================================== */

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  max-width: 670px;

  margin-top: 32px;
  padding-top: 28px;

  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-benefit {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-benefit strong {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--brand-red);
  border-radius: 50%;

  color: var(--brand-red);

  font-size: 0.9rem;
}

.hero-benefit span {
  color: #292929;

  font-size: 0.68rem;
  font-weight: 800;

  line-height: 1.3;

  text-transform: uppercase;
}

/* ==========================================================
   BOTÕES
========================================================== */

.hero__actions {
  display: flex;
  gap: 14px;

  margin-top: 34px;
}

.hero .button {
  min-height: 56px;

  padding: 0 27px;

  border-radius: 10px;

  font-size: 0.86rem;

  text-transform: uppercase;
}

.hero .button--primary {
  background: var(--brand-red);
  color: white;
}

.hero .button--primary:hover {
  background: var(--brand-red-light);
}

.button--outline {
  color: #171717;

  background: transparent;

  border: 1px solid #343434;
}

.button--outline:hover {
  color: white;
  background: #171717;
}

/* ==========================================================
   HERO - IMAGEM
========================================================== */

.hero__visual {
  position: relative;

  min-height: 638px;

  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;

  object-fit: cover;
  object-position: center;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(8, 11, 17, 0.42), transparent 50%);
}

.hero__visual::before {
  content: "";

  position: absolute;
  z-index: 2;

  left: 0;
  top: 0;
  bottom: 0;

  width: 90px;

  background: linear-gradient(90deg, #f5f2ed, transparent);

  pointer-events: none;
}

/* ==========================================================
   MARCA SOBRE A FOTO
========================================================== */

.hero__visual-brand {
  position: absolute;

  z-index: 3;

  left: 45px;
  bottom: 35px;

  display: flex;
  flex-direction: column;

  padding-left: 18px;

  border-left: 4px solid var(--brand-red);
}

.hero__visual-brand span {
  color: white;

  font-size: 1rem;
  font-weight: 900;

  text-transform: uppercase;
}

.hero__visual-brand strong {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 0.72rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.15em;
}
/* ==========================================================
   TRUST STRIP
========================================================== */

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--brand-red);
  color: var(--white);
}

.trust-strip__grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.1;
}

.trust-item span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ==========================================================
   SEÇÕES
========================================================== */

.section {
  position: relative;
  padding: 110px 0;
}

.section--dark {
  background: var(--dark);
}

.section--black {
  background: var(--black);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about h2,
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-heading p {
  max-width: 670px;
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 1rem;
}

.section-heading--center p {
  margin-inline: auto;
}

/* ==========================================================
   SOLUÇÕES
========================================================== */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */

.image-card {
  min-height: 480px;
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--card);
}

/* IMAGEM */

.image-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  /* SÓ ISSO CLAREIA A FOTO */
  filter: brightness(1.08) saturate(1.03);

  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}

/* HOVER */

.image-card:hover img {
  transform: scale(1.06);

  filter: brightness(1.13) saturate(1.05);
}

/* REMOVE QUALQUER OVERLAY EXTRA QUE CRIAMOS */

.image-card::before {
  display: none !important;
}

/* OVERLAY ORIGINAL, SÓ QUE MAIS CLARO */

.image-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8, 11, 17, 0.65) 0%,
    rgba(8, 11, 17, 0.3) 35%,
    rgba(8, 11, 17, 0.08) 65%,
    transparent 100%
  );
}

/* CONTEÚDO */

.image-card__content {
  position: absolute;

  z-index: 2;

  left: 25px;
  right: 25px;
  bottom: 28px;
}

/* PEQUENO TÍTULO */

.image-card__content span {
  color: var(--brand-red-light);

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* TÍTULO */

.image-card__content h3 {
  margin: 8px 0 10px;

  color: var(--white);

  font-size: 1.65rem;
  font-weight: 900;

  line-height: 1.05;

  text-transform: uppercase;
}

/* TEXTO */

.image-card__content p {
  color: rgba(255, 255, 255, 0.92);

  font-size: 0.88rem;
  line-height: 1.55;
}

/*
  O HTML antigo da seção possui:
  <div class="image-card__overlay"></div>

  Como agora o degradê é feito pelo ::before,
  esta camada fica transparente para evitar o efeito de
  "dois overlays" escurecendo a mesma foto.
*/

.image-card__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: transparent !important;

  pointer-events: none;
}

/* HOVER */

.image-card:hover img {
  transform: scale(1.035);

  filter: brightness(1.14) saturate(1.06) contrast(1.02);
}

/* CONTEÚDO */

.image-card__content {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 2;
}

/* RÓTULO */

.image-card__content span {
  display: inline-block;

  margin-bottom: 9px;

  color: #ff3b3f;

  font-size: 0.72rem;
  font-weight: 900;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* TÍTULO */

.image-card__content h3 {
  margin-bottom: 9px;

  color: #ffffff;

  font-size: 1.35rem;
  font-weight: 900;

  line-height: 1.05;

  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.48);
}

/* DESCRIÇÃO */

.image-card__content p {
  color: rgba(255, 255, 255, 0.96);

  font-size: 0.88rem;
  line-height: 1.55;

  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.55);
}

/* ==========================================================
   ANTES E DEPOIS
========================================================== */

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.before-after__card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
}

.before-after__card img {
  height: 100%;
  object-fit: cover;
}

.before-after__label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 92px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.before-after__label--before {
  background: rgba(8, 11, 17, 0.76);
}

.before-after__label--after {
  background: rgba(200, 26, 29, 0.88);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* ==========================================================
   SERVIÇOS
========================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 250px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--card);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200, 26, 29, 0.06);
}

.service-card__number {
  display: block;
  margin-bottom: 38px;
  color: var(--brand-red-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
}

/* ==========================================================
   SOBRE
========================================================== */

.about {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 80px;
}

.about__content > p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--gray-500);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.about__features > div {
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--dark);
}

.about__features strong {
  color: var(--brand-red-light);
  font-size: 0.91rem;
}

.about__features span {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.about__image {
  height: 570px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 10px solid rgba(200, 26, 29, 0.05);
  pointer-events: none;
}

.about__image img {
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   PORTFÓLIO
========================================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portfolio-item {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
}

.portfolio-item::after {
  content: "Ver foto";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  color: var(--white);
  background: rgba(200, 26, 29, 0.72);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.portfolio-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* ==========================================================
   CTA FINAL
========================================================== */

.final-cta {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
}

.final-cta__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(15px);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 600px;
  margin: 22px auto 32px;
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
  background: #080b11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 24px;
}

.footer__grid {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

/* ==========================================================
   TÍTULOS
========================================================== */

.footer h3,
.footer__title {
  margin-bottom: 16px;

  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 900;

  text-transform: uppercase;
}

.footer__brand {
  color: #ffffff;

  font-size: 1.25rem;
  font-weight: 900;

  text-transform: uppercase;
}

.footer__subtitle {
  margin-top: 3px;
  margin-bottom: 16px;

  color: var(--brand-red);

  font-size: 0.7rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.13em;
}

/* ==========================================================
   TEXTOS
========================================================== */

.footer p {
  color: #858c99;

  font-size: 0.86rem;
  line-height: 1.65;
}

.footer__description {
  max-width: 390px;
}

/* ==========================================================
   LINKS
========================================================== */

.footer a {
  display: block;

  margin-top: 7px;

  color: #b9bec9;

  font-size: 0.86rem;

  transition: color 0.25s ease;
}

.footer a:hover {
  color: #ffffff;
}

/* WHATSAPP */

.footer__whatsapp {
  color: #25d366 !important;
}

.footer__whatsapp:hover {
  color: #4ade80 !important;
}

/* REDES SOCIAIS */

.footer__social {
  margin-top: 20px;
}

.footer__social a:hover {
  color: var(--brand-red);
}

/* ==========================================================
   PARTE INFERIOR
========================================================== */

.footer__bottom {
  width: min(calc(100% - 40px), 1180px);

  margin: 36px auto 0;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer__bottom p {
  color: #5f6672;

  font-size: 0.75rem;
}

.footer__bottom p + p {
  margin-top: 8px;
}

.footer__developer {
  display: inline !important;

  color: var(--brand-red) !important;

  font-weight: 700;
}

.footer__developer:hover {
  color: var(--brand-red-light) !important;
}

/* ==========================================================
   WHATSAPP FIXO
========================================================== */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 15px 38px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  background: var(--whatsapp-dark);
}

.whatsapp-float svg {
  width: 31px;
  fill: var(--white);
}

/* ==========================================================
   MODAL PORTFÓLIO
========================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: rgba(0, 0, 0, 0.94);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 26px;
  color: var(--white);
  background: transparent;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================
   ANIMAÇÕES
========================================================== */

.reveal {
  opacity: 1;
  transform: none;
}

.reveal--scale {
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
