/* ==========================================================
   EXTIMOTA EXTINTORES
   STYLES.CSS
========================================================== */

/* ==========================================================
   01. VARIÁVEIS
========================================================== */

:root {
  --red: #e10600;
  --red-dark: #a90000;
  --red-light: #ff2b24;

  --black: #080808;
  --black-soft: #101010;
  --dark: #151515;
  --dark-2: #1c1c1c;

  --white: #ffffff;
  --off-white: #f5f5f5;

  --gray: #a7a7a7;
  --gray-light: #d3d3d3;
  --gray-dark: #666666;

  --border: rgba(255, 255, 255, 0.09);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  --shadow-red: 0 15px 45px rgba(225, 6, 0, 0.25);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: 0.3s ease;

  --container: 1200px;
}

/* ==========================================================
   02. RESET
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================
   03. ELEMENTOS GERAIS
========================================================== */

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section--dark {
  background:
    radial-gradient(
      circle at top right,
      rgba(225, 6, 0, 0.08),
      transparent 35%
    ),
    var(--black-soft);
}

.section--black {
  background: var(--black);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--red-light);

  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: var(--red);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;

  font-weight: 900;

  letter-spacing: -0.04em;

  margin-bottom: 18px;
}

.section-heading p {
  color: var(--gray);

  font-size: 1.05rem;

  max-width: 680px;
}

.section-heading--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  display: flex;
  justify-content: center;

  margin-top: 45px;
}

/* ==========================================================
   04. BOTÕES
========================================================== */

.button {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: var(--radius-sm);

  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);

  background: linear-gradient(135deg, var(--red-light), var(--red-dark));

  box-shadow: var(--shadow-red);
}

.button--primary:hover {
  box-shadow: 0 18px 50px rgba(225, 6, 0, 0.4);
}

.button--outline {
  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(8px);
}

.button--outline:hover {
  border-color: var(--red);

  background: rgba(225, 6, 0, 0.1);
}

.button--white {
  color: var(--red-dark);
  background: var(--white);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.button--white:hover {
  background: var(--off-white);
}

/* ==========================================================
   05. HEADER
========================================================== */

.mv-header {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;
  height: 82px;

  display: flex;
  align-items: center;

  background: rgba(8, 8, 8, 0.8);

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(15px);

  transition:
    background var(--transition),
    box-shadow var(--transition),
    height var(--transition);
}

.mv-header.is-scrolled,
.mv-header.scrolled {
  height: 72px;

  background: rgba(8, 8, 8, 0.96);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.mv-header__container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

/* ==========================================================
   06. MARCA / LOGO
========================================================== */

.mv-header__brand {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

.mv-header__logo {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 10px;

  background: var(--white);
}

.mv-header__logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.mv-header__brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}

.mv-header__brand-text strong {
  font-size: 0.95rem;
  font-weight: 900;

  text-transform: uppercase;
}

.mv-header__brand-text span {
  margin-top: 4px;

  color: var(--gray);

  font-size: 0.72rem;
  font-weight: 600;
}

/* ==========================================================
   07. MENU DESKTOP
========================================================== */

.mv-header__nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.mv-header__nav a {
  position: relative;

  color: var(--gray-light);

  font-size: 0.86rem;
  font-weight: 700;

  transition: color var(--transition);
}

.mv-header__nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--red);

  transition: width var(--transition);
}

.mv-header__nav a:hover {
  color: var(--white);
}

.mv-header__nav a:hover::after {
  width: 100%;
}

/* ==========================================================
   08. AÇÕES DO HEADER
========================================================== */

.mv-header__actions {
  display: flex;
  align-items: center;

  gap: 12px;
}

.mv-header__social {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.mv-header__social:hover {
  transform: translateY(-2px);

  border-color: var(--red);

  background: rgba(225, 6, 0, 0.1);
}

.mv-header__social svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
}

.mv-header__social .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.mv-header__whatsapp {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  border-radius: 8px;

  background: linear-gradient(135deg, var(--red-light), var(--red-dark));

  color: var(--white);

  font-size: 0.82rem;
  font-weight: 800;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mv-header__whatsapp:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.3);
}

/* ==========================================================
   09. MENU HAMBÚRGUER
========================================================== */

.mv-header__menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.mv-header__menu-btn span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: var(--white);

  transition: var(--transition);
}

/* ==========================================================
   10. MENU MOBILE
========================================================== */

.mv-mobile-menu {
  display: none;

  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;

  padding: 28px 20px 35px;

  background: rgba(8, 8, 8, 0.99);

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}

.mv-mobile-menu.is-open,
.mv-mobile-menu.active {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.mv-mobile-menu > a {
  color: var(--white);

  font-size: 1rem;
  font-weight: 700;
}

.mv-mobile-menu__socials {
  display: flex;

  gap: 10px;

  margin-top: 5px;
}

.mv-mobile-menu__whatsapp {
  width: 100%;
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 5px;

  background: var(--red);

  color: var(--white);

  border-radius: 8px;

  font-weight: 800;
}

/* ==========================================================
   HERO EXTIMOTA
========================================================== */

.ext-hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 135px 0 80px;

  overflow: hidden;

  background:
    radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.08), transparent 30%),
    #f6f6f6;

  color: #111;
}

/* DETALHE DE FUNDO */

.ext-hero::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  right: -150px;

  border-radius: 50%;

  background: rgba(225, 6, 0, 0.06);

  filter: blur(20px);
}

/* GRID PRINCIPAL */

.ext-hero__container {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, 0.9fr);

  gap: 70px;

  align-items: center;
}

/* ==========================================================
   TEXTO
========================================================== */

.ext-hero__content {
  max-width: 720px;
}

.ext-hero__eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  color: var(--red);

  font-size: 0.78rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ext-hero__eyebrow::before {
  content: "";

  width: 34px;
  height: 3px;

  border-radius: 10px;

  background: var(--red);
}

.ext-hero h1 {
  max-width: 650px;
  margin: 0;

  color: #111;

  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 1.02;

  font-weight: 900;
  letter-spacing: -0.045em;
}

.ext-hero h1 span {
  color: #e10600;
}

/* ==========================================================
   BOTÕES
========================================================== */

.ext-hero__actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}

.ext-btn {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 27px;

  border-radius: 10px;

  font-size: 0.9rem;
  font-weight: 900;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.ext-btn:hover {
  transform: translateY(-3px);
}

.ext-btn--primary {
  background: linear-gradient(135deg, #f0140c, #bd0000);

  color: #fff;

  box-shadow: 0 14px 35px rgba(225, 6, 0, 0.25);
}

.ext-btn--primary:hover {
  box-shadow: 0 18px 40px rgba(225, 6, 0, 0.35);
}

.ext-btn--secondary {
  border: 1px solid #d2d2d2;

  background: #fff;

  color: #222;
}

.ext-btn--secondary:hover {
  border-color: var(--red);

  color: var(--red);
}

/* ==========================================================
   DIFERENCIAIS DA HERO
========================================================== */

.ext-hero__trust {
  display: flex;
  flex-wrap: wrap;

  gap: 14px 24px;

  margin-top: 28px;
}

.ext-trust-item {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #444;

  font-size: 0.82rem;
  font-weight: 700;
}

.ext-trust-icon {
  width: 23px;
  height: 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: rgba(225, 6, 0, 0.1);

  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;
}

.ext-hero__note {
  margin-top: 17px;

  color: #888;

  font-size: 0.78rem;

  font-weight: 600;
}

/* ==========================================================
   IMAGEM
========================================================== */

.ext-hero__visual {
  position: relative;
}

.ext-hero__image-wrapper {
  position: relative;

  border-radius: 24px;

  overflow: visible;
}

.ext-hero__image {
  width: 100%;

  aspect-ratio: 4 / 3;

  display: block;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* LINHA VERMELHA */

.ext-hero__image-wrapper::before {
  content: "";

  position: absolute;

  top: -10px;
  right: -10px;

  z-index: -1;

  width: 90%;
  height: 90%;

  border-radius: 24px;

  background: var(--red);
}

/* ==========================================================
   BADGE DA FOTO
========================================================== */

.ext-hero__badge {
  position: absolute;

  right: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;

  gap: 13px;

  min-width: 300px;

  padding: 18px 20px;

  border-left: 5px solid var(--red);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(10px);
}

.ext-hero__badge-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 10px;

  background: rgba(225, 6, 0, 0.1);

  font-size: 1.5rem;
}

.ext-hero__badge div:last-child {
  display: flex;
  flex-direction: column;
}

.ext-hero__badge strong {
  color: #111;

  font-size: 1rem;

  font-weight: 900;
}

.ext-hero__badge span {
  margin-top: 2px;

  color: #777;

  font-size: 0.75rem;
}

/* ==========================================================
   FAIXA ABAIXO DA HERO
========================================================== */

.ext-highlight {
  position: relative;
  z-index: 3;

  padding: 27px 0;

  background: linear-gradient(135deg, #e10600, #a90000);

  color: #fff;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ext-highlight__grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.ext-highlight__item {
  position: relative;

  text-align: center;
}

.ext-highlight__item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 10%;
  right: 0;

  width: 1px;
  height: 80%;

  background: rgba(255, 255, 255, 0.18);
}

.ext-highlight__item strong {
  display: block;

  color: #fff;

  font-size: 1rem;

  font-weight: 900;

  text-transform: uppercase;
}

.ext-highlight__item span {
  display: block;

  margin-top: 3px;

  color: rgba(255, 255, 255, 0.77);

  font-size: 0.78rem;
}

/* ==========================================================
   12. BENEFÍCIOS HERO
========================================================== */

.hero__benefits {
  display: grid;

  grid-template-columns: repeat(4, max-content);

  gap: 14px 28px;

  margin-top: 45px;
}

.hero-benefit {
  display: flex;
  align-items: center;

  gap: 9px;

  color: var(--gray-light);

  font-size: 0.82rem;
  font-weight: 600;
}

.hero-benefit strong {
  width: 23px;
  height: 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(225, 6, 0, 0.14);

  color: var(--red-light);

  font-size: 0.75rem;
}

/* ==========================================================
   13. SOLUÇÕES
========================================================== */

.solution-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.image-card {
  position: relative;

  min-height: 460px;

  overflow: hidden;

  border-radius: var(--radius-md);

  background: var(--dark);

  box-shadow: var(--shadow);
}

.image-card img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-card__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 10%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.96) 100%
  );
}

.image-card__content {
  position: absolute;

  left: 0;
  bottom: 0;

  z-index: 2;

  width: 100%;

  padding: 30px;
}

.image-card__content span {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--red-light);

  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.image-card__content h3 {
  margin-bottom: 10px;

  font-size: 1.5rem;
  font-weight: 900;

  letter-spacing: -0.03em;
}

.image-card__content p {
  color: var(--gray-light);

  font-size: 0.93rem;
}

/* ==========================================================
   14. SERVIÇOS
========================================================== */

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 240px;

  padding: 28px;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, var(--red), transparent);

  opacity: 0;

  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(225, 6, 0, 0.38);

  background: linear-gradient(
    145deg,
    rgba(225, 6, 0, 0.11),
    rgba(255, 255, 255, 0.02)
  );

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  display: inline-block;

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.24);

  font-size: 2rem;
  font-weight: 900;

  line-height: 1;
}

.service-card h3 {
  margin-bottom: 12px;

  font-size: 1.12rem;
  font-weight: 800;

  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--gray);

  font-size: 0.9rem;
}

/* ==========================================================
   15. SOBRE
========================================================== */

.about {
  display: grid;

  grid-template-columns: 1fr 0.9fr;

  gap: 80px;

  align-items: center;
}

.about__content h2 {
  max-width: 650px;

  margin-bottom: 24px;

  font-size: clamp(2.2rem, 4vw, 3.8rem);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -0.045em;
}

.about__content > p {
  max-width: 650px;

  margin-bottom: 16px;

  color: var(--gray);

  font-size: 1rem;
}

.about__features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin-top: 32px;
}

.about__features > div {
  display: flex;
  flex-direction: column;

  padding: 18px;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.025);
}

.about__features strong {
  color: var(--white);

  font-size: 0.92rem;
}

.about__features strong::first-letter {
  color: var(--red);
}

.about__features span {
  margin-top: 3px;

  color: var(--gray);

  font-size: 0.78rem;
}

.about__image {
  position: relative;

  min-height: 570px;

  overflow: hidden;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow);
}

.about__image::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: inherit;

  pointer-events: none;
}

.about__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));

  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 100%;

  min-height: 570px;

  object-fit: cover;
}

/* ==========================================================
   16. PORTFÓLIO / TRABALHOS
========================================================== */

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.portfolio-item {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  padding: 0;

  border: 0;

  border-radius: 14px;

  background: var(--dark);

  cursor: pointer;
}

.portfolio-item::after {
  content: "Ver trabalho";

  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.68);

  color: var(--white);

  font-size: 0.82rem;
  font-weight: 800;

  opacity: 0;

  transition: opacity var(--transition);
}

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

/* ==========================================================
   17. ÁREA DE ATENDIMENTO
========================================================== */

#atendimento .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#atendimento .service-card {
  min-height: 215px;
}

#atendimento .service-card__number {
  margin-bottom: 28px;
  color: var(--red-light);
}

/* TABLET */
@media (max-width: 900px) {
  #atendimento .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 580px) {
  #atendimento .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   18. CTA FINAL
========================================================== */

.final-cta {
  position: relative;

  overflow: hidden;

  padding: 115px 0;

  background: linear-gradient(135deg, #d90000 0%, #9d0000 100%);
}

.final-cta::before {
  content: "";

  position: absolute;

  top: -250px;
  right: -200px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  border: 100px solid rgba(255, 255, 255, 0.045);
}

.final-cta__glow {
  position: absolute;

  left: -200px;
  bottom: -300px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  filter: blur(100px);
}

.final-cta__content {
  position: relative;
  z-index: 2;

  max-width: 850px;

  text-align: center;
}

.final-cta .eyebrow {
  color: var(--white);
}

.final-cta .eyebrow::before {
  background: var(--white);
}

.final-cta h2 {
  margin-bottom: 18px;

  font-size: clamp(2.5rem, 5vw, 4.7rem);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.05em;
}

.final-cta p {
  max-width: 650px;

  margin: 0 auto 32px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 1.05rem;
}

/* ==========================================================
   19. FOOTER
========================================================== */

.footer {
  padding: 75px 0 0;

  background: #050505;

  border-top: 1px solid var(--border);
}

.footer__grid {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 55px;
}

.footer__brand {
  margin-bottom: 5px;

  color: var(--white);

  font-size: 1.15rem;
  font-weight: 900;

  text-transform: uppercase;
}

.footer__subtitle {
  margin-bottom: 17px;

  color: var(--red-light);

  font-size: 0.78rem;
  font-weight: 700;
}

.footer__description {
  max-width: 320px;

  color: var(--gray);

  font-size: 0.88rem;
}

.footer__title {
  margin-bottom: 17px;

  color: var(--white);

  font-size: 0.88rem;
  font-weight: 800;
}

.footer__column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 7px;
}

.footer__column
  > p:not(.footer__title):not(.footer__brand):not(.footer__subtitle):not(
    .footer__description
  ) {
  color: var(--gray);

  font-size: 0.82rem;
}

.footer__column a {
  color: var(--gray-light);

  font-size: 0.85rem;

  transition: color var(--transition);
}

.footer__column a:hover {
  color: var(--red-light);
}

.footer__whatsapp {
  margin-top: 10px;

  padding: 10px 14px;

  border: 1px solid rgba(225, 6, 0, 0.25);

  border-radius: 8px;

  background: rgba(225, 6, 0, 0.08);

  color: var(--white) !important;

  font-weight: 700;
}

.footer__social {
  margin-top: 20px;
}

.footer__social .footer__title {
  margin-bottom: 7px;
}

.footer__bottom {
  width: min(100% - 40px, var(--container));
  margin: 60px auto 0;

  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid var(--border);
}

.footer__bottom p {
  color: var(--gray-dark);

  font-size: 0.76rem;
}

.footer__developer {
  color: var(--white) !important;

  font-weight: 700;
}

.footer__developer:hover {
  color: var(--red-light) !important;
}

/* ==========================================================
   20. WHATSAPP FIXO
========================================================== */

.whatsapp-float {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 900;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;

  color: var(--white);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;

  fill: currentColor;
}

/* ==========================================================
   21. MODAL PORTFÓLIO
========================================================== */

.modal {
  position: fixed;

  inset: 0;

  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.94);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.modal.is-open,
.modal.active {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
}

.modal img {
  max-width: min(100%, 1100px);
  max-height: 85vh;

  object-fit: contain;

  border-radius: 12px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal__close {
  position: absolute;

  top: 25px;
  right: 30px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  color: var(--white);

  font-size: 2rem;

  cursor: pointer;

  transition:
    background var(--transition),
    transform var(--transition);
}

.modal__close:hover {
  transform: rotate(90deg);

  background: var(--red);
}

/* ==========================================================
   22. ANIMAÇÕES DE ENTRADA
========================================================== */

.reveal {
  opacity: 1;
  transform: none;
}

.reveal--scale {
  opacity: 1;
  transform: none;
}

.reveal.active,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   23. SELEÇÃO DE TEXTO
========================================================== */

::selection {
  background: var(--red);

  color: var(--white);
}

/* ==========================================================
   24. SCROLLBAR
========================================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #080808;

  border-radius: 20px;

  background: #2c2c2c;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}
/* ==========================================================
   FAIXA ANIMADA DE SERVIÇOS
========================================================== */

.service-ticker {
  width: 100%;
  overflow: hidden;

  background: #e10600;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-ticker__track {
  display: flex;

  width: max-content;

  animation: serviceTicker 28s linear infinite;
}

.service-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.service-ticker__group span {
  position: relative;

  display: flex;
  align-items: center;

  padding: 18px 32px;

  color: #ffffff;

  font-size: 0.92rem;
  font-weight: 800;

  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-ticker__group span::after {
  content: "";

  position: absolute;

  right: 0;
  top: 50%;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);

  transform: translateY(-50%);
}

.service-ticker:hover .service-ticker__track {
  animation-play-state: paused;
}

@keyframes serviceTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================
   BUSCA DE SERVIÇOS
========================================================== */

.service-search {
  position: relative;

  padding: 90px 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(225, 6, 0, 0.12), transparent 45%),
    #0b0b0b;
}

.service-search__content {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}

.service-search__content h2 {
  margin: 12px 0 14px;

  color: #ffffff;

  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;

  letter-spacing: -0.04em;
}

.service-search__content > p {
  max-width: 620px;

  margin: 0 auto 32px;

  color: #b7b7b7;

  font-size: 1rem;
  line-height: 1.7;
}

/* FORM */

.service-search__form {
  position: relative;

  max-width: 760px;

  margin: 0 auto;
}

.service-search__field {
  display: flex;

  padding: 7px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  background: #161616;

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.service-search__field input {
  flex: 1;

  min-width: 0;

  padding: 0 20px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #ffffff;

  font-family: inherit;
  font-size: 1rem;
}

.service-search__field input::placeholder {
  color: #777;
}

.service-search__field button {
  min-height: 54px;

  padding: 0 26px;

  border: 0;
  border-radius: 11px;

  background: #e10600;

  color: #ffffff;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.service-search__field button:hover {
  background: #ff1710;

  transform: translateY(-1px);
}

/* SUGESTÕES */

.service-search__suggestions {
  position: absolute;

  left: 0;
  right: 0;
  top: calc(100% + 8px);

  z-index: 20;

  display: none;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;

  background: #161616;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

  text-align: left;
}

.service-search__suggestions.active {
  display: block;
}

.service-search__suggestion {
  width: 100%;

  padding: 15px 18px;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: transparent;

  color: #ffffff;

  font-family: inherit;
  font-size: 0.95rem;

  text-align: left;

  cursor: pointer;
}

.service-search__suggestion:last-child {
  border-bottom: 0;
}

.service-search__suggestion:hover {
  background: rgba(225, 6, 0, 0.12);

  color: #ff3029;
}

/* ATALHOS */

.service-search__quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 9px;

  margin-top: 18px;
}

.service-search__quick button {
  padding: 9px 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.04);

  color: #c9c9c9;

  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.service-search__quick button:hover {
  border-color: #e10600;

  background: rgba(225, 6, 0, 0.1);

  color: #ffffff;
}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 600px) {
  .service-ticker__group span {
    padding: 15px 22px;

    font-size: 0.82rem;
  }

  .service-search {
    padding: 65px 0;
  }

  .service-search__field {
    flex-direction: column;

    padding: 7px;
  }

  .service-search__field input {
    min-height: 54px;

    padding: 0 16px;
  }

  .service-search__field button {
    width: 100%;
  }
}
