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

:root {
  --black: #0d0d0d;
  --dark: #141414;
  --dark2: #1b1b1b;
  --border: #272727;
  --muted: #555;
  --mid: #7a7a7a;
  --light: #aaa;
  --white: #f0eeeb;
  --red: #c8381a;
  --red2: #dc4a28;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-mark {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

.nav-wordmark {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--red2);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.14) saturate(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--black) 100%),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 10%, var(--black) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero-h1 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.2rem;
}

.hero-h1 span {
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light);
  max-width: 65%;
  margin-bottom: 3.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--red2);
  transform: translateY(-2px);
}

/* seta de scroll */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  animation: bounce 2.5s ease infinite;
}

.hero-scroll span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ══════════════════════════════
   TRANSIÇÃO HERO → SOBRE
   Linha vertical + label flutuante
══════════════════════════════ */
.bridge-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 4rem;
  height: 17rem;
  position: relative;
}

.bridge-line {
  display: none;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--border) 0%, transparent 100%);
  margin-left: 1px;
}

.bridge-label {
  position: absolute;
  bottom: 1rem;
  left: 5.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════
   SOBRE — texto amplo, sem caixa
══════════════════════════════ */
.about {
  padding: 0 4rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  /* aspect-ratio: 3/4; */
  object-fit: cover;
  filter: grayscale(0.65) brightness(0.6) contrast(1.1);
  display: block;
}

/* linha vermelha sobreposta à foto */
.about-img-accent {
  position: absolute;
  top: 3rem;
  left: -1.5rem;
  width: 3px;
  height: 40%;
  background: var(--red);
}

.about-year {
  position: absolute;
  bottom: 2.5rem;
  right: -1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transform: rotate(180deg);
}

.about-content {
  padding-top: 3rem;
}

.section-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--red);
}

.about-h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.about-p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.about-p strong {
  color: var(--white);
  font-weight: 500;
}

.about-values {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2rem;
}

.av-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.av-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════
   TRANSIÇÃO SOBRE → SERVIÇOS
   Linha + número grande flutuante
══════════════════════════════ */
.bridge-2 {
  padding: 17rem 4rem 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.bridge-2-left {}

.bridge-2-headline {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 1.5rem;
}

.bridge-2-headline span {
  color: var(--red);
}

.bridge-2-right {
  text-align: right;
  flex-shrink: 0;
}

.bridge-2-num {
  font-size: 7rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.bridge-2-num-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.bridge-2-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  max-width: 340px;
  margin-top: 1.5rem;
}

/* ══════════════════════════════
   SERVIÇOS — lista de linhas
══════════════════════════════ */
.svc-list {
  background: var(--black);
}

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr 20px;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

.svc-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.22s;
}

.svc-row:hover {
  background: var(--dark);
}

.svc-row:hover::before {
  width: 3px;
}

.svc-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.02em;
  transition: color 0.22s;
}

.svc-row:hover .svc-num {
  color: var(--red);
}

.svc-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.svc-icon {
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 0.22s;
}

.svc-row:hover .svc-icon {
  color: var(--red);
}

/* ══════════════════════════════
   FAIXA — sem margens, flui direto
══════════════════════════════ */
.band {
  background: var(--red);
  margin: 17rem 0 0 0;
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.band-quote {
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(240, 238, 235, 0.95);
  max-width: 600px;
}

.band-attr {
  flex-shrink: 0;
  text-align: right;
}

.band-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 238, 235, 0.85);
}

.band-sub {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(240, 238, 235, 0.5);
  margin-top: 0.4rem;
}

/* ══════════════════════════════
   TRANSIÇÃO FAIXA → EMPRESA
   Espaço amplo com texto âncora central
══════════════════════════════ */
.bridge-3 {
  padding: 17rem 4rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.bridge-3::before {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--border));
}

.bridge-3-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
}

.bridge-3-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 680px;
}

.bridge-3-title em {
  font-style: normal;
  color: var(--mid);
  font-weight: 300;
}

/* ══════════════════════════════
   EMPRESA — três colunas abertas
══════════════════════════════ */
.mvp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark);
}

.mvp-col {
  padding: 5rem 4rem 6rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.mvp-col:last-child {
  border-right: none;
}

.mvp-col:first-child {
  background: var(--dark2);
}

/* linha vermelha decorativa no topo de cada coluna */
.mvp-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4rem;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.mvp-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
  user-select: none;
}

.mvp-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.mvp-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.mvp-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light);
}

/* ══════════════════════════════
   TRANSIÇÃO EMPRESA → CONTATO
   Espaço com linha diagonal implícita
══════════════════════════════ */
.bridge-4 {
  height: 17rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* linha diagonal decorativa */
.bridge-4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4rem;
  width: 1px;
  height: 8rem;
  background: linear-gradient(to bottom, var(--border) 0%, transparent 100%);
}

/* ══════════════════════════════
   CONTATO — layout assimétrico
   texto esq flui naturalmente, mapa dir
══════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  margin-bottom: 17rem;
}

.contact-left {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  border-right: 1px solid var(--border);
}

.contact-h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

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

.contact-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
  border-top: 1px solid var(--border);
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-top: 1px;
}

.ci-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.ci-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.ci-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.ci-value.sm {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light);
}

.contact-cta {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.contact-cta:hover {
  background: var(--red2);
}

.cta-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(0.4) contrast(1.1);
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.95) 55%);
  padding: 5rem 3rem 3rem;
}

.map-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.map-addr {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.map-link:hover {
  color: var(--red);
}

/* ══ FOOTER ══ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.footer-col {
  padding: 4rem;
  border-right: 1px solid var(--border);
}

.footer-col:last-child {
  border-right: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-mark {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

.footer-name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--white);
}

.footer-tag {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.8rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a::before {
  content: '–';
  font-size: 0.65rem;
  color: var(--border);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--light);
}

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

.footer-base {
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: 0.04em;
}

/* ══ FLOAT ══ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  width: 50px;
  height: 50px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 56, 26, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: var(--red2);
}

/* ══ FADE ══ */
.fi {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fi.v {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
  nav {
    padding: 0 2rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .about-photo-wrap {
    display: none;
  }

  .about-content {
    padding: 5rem 2.5rem 6rem;
  }

  .bridge-1 {
    padding: 0 2.5rem;
  }

  .bridge-2 {
    padding: 5rem 2.5rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .bridge-2-right {
    display: none;
  }

  .bridge-3 {
    padding: 5rem 2.5rem 4rem;
  }

  .svc-row {
    padding: 1.8rem 2.5rem;
  }

  .mvp {
    grid-template-columns: 1fr;
  }

  .mvp-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .mvp-col:last-child {
    border-bottom: none;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-left {
    padding: 5rem 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .band {
    flex-direction: column;
    gap: 2rem;
  }

  .band-attr {
    text-align: left;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 0 1.5rem;
  }

  .svc-row {
    grid-template-columns: 52px 1fr;
    padding: 1.8rem 1.5rem;
    gap: 1.5rem;
  }

  .svc-desc,
  .svc-icon {
    display: none;
  }

  .bridge-2-desc {
    display: none;
  }

  .mvp-col {
    padding: 4rem 2rem;
  }

  .footer-col {
    padding: 3rem 2rem;
  }

  .footer-base {
    padding: 1.2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .band {
    padding: 4rem 1.5rem;
  }

  .bridge-3 {
    padding: 4rem 1.5rem 3rem;
  }

  .bridge-4 {
    height: 5rem;
  }
}