:root {
  --dark: #0A0A0A;
  --dark-2: #0A0A0A;
  --dark-3: #181818;
  --hero-bg: var(--dark-2);
  --grid-line: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.45);
  --white: #ffffff;
  --text: #F5F5F7;
  --nav-bg: rgba(10, 10, 10, 0.9);
  --red: #cc1c2f;
  --red-dark: #a10f1a;
  --font: 'Sansation', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-subtitle: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --card-radius: 12px;
  --radius: 12px;
  --transition: 0.22s ease;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-subtitle);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-subtitle);
}

p,
.hero__sub,
.label,
.footer__subtitle,
.section-head p {
  font-family: var(--font-subtitle);
}

strong {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* UTILITÁRIOS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 6%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 5%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 6%;
  }
}

.label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  margin-bottom: 1rem;
}

/* SEPARADORES PREMIUM DE SEÇÃO */
.pain,
.benefits,
.how,
.authority,
.presence,
.cta-final {
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%) 1;
}

/* BOTÕES */
.btn-wpp,
.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

@media (min-width: 600px) {

  .btn-wpp,
  .btn-ghost {
    width: max-content;
    padding: 1rem 2rem;
    display: inline-flex;
  }
}

.btn-wpp {
  background: var(--red);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(204, 28, 47, 0.08);
  animation: wpp-aura 3s infinite;
}

.btn-wpp:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(204, 28, 47, 0.25);
  animation: none;
}

@keyframes wpp-aura {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 28, 47, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(204, 28, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 28, 47, 0);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--red);
  background: rgba(204, 28, 47, 0.08);
}

.btn-ghost:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(204, 28, 47, 0.12);
  border-radius: 10px;
}


/* NAVBAR */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 6%;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 64px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-wordmark {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo-wordmark em {
  font-style: normal;
  color: var(--red);
  margin-left: 0.35em;
}

.nav-links,
.nav-actions .btn-wpp {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  padding: 0;
}

.nav-toggle .hamburger {
  position: relative;
  width: 20px;
  height: 2px;
  background: #d2d2d7;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #d2d2d7;
}

.nav-toggle .hamburger::before {
  top: -6px;
}

.nav-toggle .hamburger::after {
  bottom: -6px;
}

@media (min-width: 960px) {
  nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 6%;
    min-height: 72px;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  .logo-wordmark {
    font-size: 1rem;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    justify-self: center;
    align-items: center;
  }

  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 180ms ease, transform 140ms ease;
  }

  .nav-links a:hover {
    transform: translateY(-1px);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .nav-actions .btn-wpp {
    display: inline-flex;
    width: auto;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
  }

  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
  padding: 6%;
  width: 100%;
  height: 100vh;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 151;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a:not(.btn-wpp) {
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu .btn-wpp {
  width: 100%;
  padding: 1rem;
}

@media (min-width: 960px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  background: var(--dark);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -44px;
  left: -44px;
  right: -44px;
  bottom: -44px;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 30%, transparent 80%);
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 70vw;
  height: 70vh;
  max-width: 800px;
  background: radial-gradient(circle, rgba(204, 28, 47, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__photo {
  position: relative;
  width: 100%;
  height: 75vw;
  min-height: 280px;
  max-height: 480px;
  order: -1;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 8s ease-out;
}

.hero__photo:hover img {
  transform: scale(1.03);
}

.hero__photo::after {
  display: none;
}

.hero__copy {
  padding: 2rem 6% 3.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero__copy h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
  text-shadow: 0 0 80px rgba(204, 28, 47, 0.12);
}

.hero__copy h1 .accent {
  color: var(--red);
}

.hero__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 100%;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 600px) {
  .hero__photo {
    height: 50vw;
    max-height: 500px;
  }

  .hero__copy {
    padding: 3rem 6% 4rem;
  }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding-top: 72px;
  }

  .hero__photo {
    height: 100%;
    min-height: 100%;
    max-height: none;
    order: 0;
    border: none;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  }

  .hero__photo img {
    object-position: center 40%;
  }

  .hero__photo::after {
    display: none;
  }

  .hero__copy {
    padding: 5rem 6% 4rem;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero__copy .label {
    display: inline-block;
    padding: 0.35rem 0.8rem 0.35rem 0.8rem;
    border-radius: 4px 0 0 4px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 100vw;
    margin-right: -100vw;
  }

  .hero__copy h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  }

  .hero__sub {
    max-width: 430px;
  }
}

/* SECTION BASE */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.section-head h2 .accent {
  color: var(--red);
}

.section-head p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 960px) {
  .section-head {
    margin-bottom: 4rem;
  }
}

/* 2. PAIN / PREVISIBILIDADE */
.pain {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at right center, rgba(204, 28, 47, 0.06), transparent 50%), var(--dark);
  padding: 4rem 0;
}

.pain::before {
  content: '';
  position: absolute;
  top: -44px;
  left: -44px;
  right: -44px;
  bottom: -44px;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
}

.pain .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pain__text h2 {
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.pain__text h2 .accent {
  color: #3B82F6;
}

.pain__text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.chart {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  width: 100%;
}

.chart__kicker {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.chart__title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.chart__svg {
  width: 100%;
  height: auto;
  min-height: 120px;
}

.chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-weight: 700;
}

.chart__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.chart__footer strong {
  color: #fff;
}

@media (min-width: 960px) {
  .pain {
    padding: 7rem 0;
  }

  .pain .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .chart {
    padding: 2rem;
  }
}

/* 3. BENEFÍCIOS */
.benefits {
  background: var(--dark);
  padding: 4rem 0;
  width: 100%;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.benefit {
  background: rgba(10, 10, 10, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.035);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  width: 100%;
}

.benefit:hover {
  background: rgba(24, 24, 24, 0.9);
  border-color: rgba(204, 28, 47, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.benefit::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit:hover::before {
  transform: scaleX(1);
}

.benefit__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 0 0 0.5rem;
  transition: text-shadow 0.3s;
}

.benefit:hover .benefit__num {
  text-shadow: 0 0 20px rgba(204, 28, 47, 0.4);
}

.benefit__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.benefit__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 600px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .benefits {
    padding: 7rem 0;
  }

  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .benefit {
    padding: 2.4rem 1.8rem;
  }

  .benefit__num {
    font-size: 2rem;
  }
}

/* 4. COMO FUNCIONA */
.how {
  background: radial-gradient(circle at bottom left, rgba(204, 28, 47, 0.03), transparent 50%), radial-gradient(circle at left center, rgba(204, 28, 47, 0.02), transparent 40%), var(--dark);
  padding: 4rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: -44px;
  left: -44px;
  right: -44px;
  bottom: -44px;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
}

.how .container {
  position: relative;
  z-index: 1;
}

.how__head {
  margin-bottom: 2.5rem;
}

.how__head h2 {
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.how__head h2 .accent {
  color: var(--red);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.step {
  background: var(--dark-3);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
}

.step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(204, 28, 47, 0.1);
  line-height: 1;
  margin: 0 0 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 0;
    border: none;
    position: relative;
  }

  .step {
    border-radius: 0;
    border: none;
    background: var(--dark-2);
    padding: 2.5rem 2rem;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 3.8rem;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
  }
}

@media (min-width: 960px) {
  .how {
    padding: 7rem 0;
  }

  .how__head {
    margin-bottom: 4rem;
  }

  .step__num {
    font-size: 4.5rem;
  }
}

/* 5. AUTORIDADE */
/* ============================================================
   AUTHORITY — Especialistas no Setor
============================================================ */
.authority {
  background: var(--dark);
  padding: 5rem 0 6rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.authority__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 110% 40%, rgba(204, 28, 47, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 60% at -10% 80%, rgba(204, 28, 47, 0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.authority .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ---- Foto ---- */
.authority__photo {
  position: relative;
  width: 100%;
}

.authority__photo-main {
  position: relative;
}

.authority__photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.65),
    0 0 0 1px var(--border);
}

.authority__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    transparent 40%,
    rgba(10, 10, 10, 0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.authority__photo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(204, 28, 47, 0.15) 75%, transparent 100%);
  z-index: 2;
}

.authority__photo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) contrast(1.06) saturate(0.88);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.authority__photo-frame:hover img {
  transform: scale(1.03);
  filter: brightness(0.95) contrast(1.06) saturate(1);
}

/* Sub-fotos */
.authority__photo-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.authority__photo-frame--sub::before {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}

.authority__photo-frame--sub::after {
  display: none;
}

.authority__photo-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 5;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.authority__photo-frame--sub img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.04) saturate(0.9);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.authority__photo-frame--sub:hover img {
  transform: scale(1.05);
  filter: brightness(0.98) contrast(1.04) saturate(1);
}

/* Badge circular */
.authority__badge {
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  box-shadow:
    0 0 0 3px rgba(204, 28, 47, 0.25),
    0 0 0 7px rgba(204, 28, 47, 0.08),
    0 10px 28px rgba(204, 28, 47, 0.50);
}

.authority__badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: none;
}

.authority__badge span {
  font-size: 0.41rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  margin-top: 3px;
}

.authority__cta {
  display: inline-flex;
  margin-top: 1.75rem;
  align-self: flex-start;
}

/* ---- Copy ---- */
.authority__copy h2 {
  font-size: clamp(1.45rem, 5.5vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 1rem 0 1.3rem;
  letter-spacing: -0.025em;
}

.authority__copy h2 .accent {
  color: var(--red);
}

.authority__copy p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 1rem;
}

/* Tags de domínio técnico */
.authority__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.5rem 0 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.authority__tag {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--red);
  background: rgba(204, 28, 47, 0.07);
  border: 1px solid rgba(204, 28, 47, 0.28);
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  cursor: default;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.authority__tag:hover {
  background: rgba(204, 28, 47, 0.16);
  border-color: rgba(204, 28, 47, 0.65);
  color: #ff3b4e;
}

/* Stats */
.authority__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0;
}

.stat {
  background: rgba(255, 255, 255, 0.018);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (max-width: 959px) {
  .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.45s ease;
  }

  .stat:hover::before {
    width: 100%;
  }
}

.stat:hover {
  background: rgba(255, 255, 255, 0.045);
}

.stat__num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat__label {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-transform: none;
}

@media (min-width: 960px) {
  .authority {
    padding: 8rem 0;
  }

  .authority .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }


  .authority__badge {
    width: 100px;
    height: 100px;
    bottom: -1.35rem;
    right: 1.75rem;
  }

  .authority__badge strong {
    font-size: 1.4rem;
  }

  .authority__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat {
    padding: 1.75rem 1.5rem;
  }

  .stat__num {
    font-size: 2.2rem;
  }

  .stat__label {
    font-size: 0.68rem;
  }
}

/* 5.5 PRESENÇA NO SETOR */
.presence {
  background: radial-gradient(ellipse at top, #121212 0%, var(--dark) 85%);
  padding: 4rem 0;
  overflow: hidden;
  width: 100%;
}

.presence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.presence__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: default;
  width: 100%;
}

.presence__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
  will-change: transform;
}

.presence__card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.presence__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%);
  pointer-events: none;
}

.presence__card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  z-index: 2;
}

.presence__card-text h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.3rem;
}

.presence__card-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.presence__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--red);
  z-index: 3;
  transition: width 0.45s ease;
}

.presence__card:hover::before {
  width: 100%;
}

@media (min-width: 600px) {
  .presence__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .presence {
    padding: 7rem 0;
  }

  .presence__grid {
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.25;
}

/* 6. STRIP / DIFERENCIAIS */
.strip {
  background: linear-gradient(to bottom, var(--dark) 0%, var(--red) 8%, #a10f1a 92%, var(--dark) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.strip::after {
  display: none;
}

.strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.strip__left h2 {
  font-size: clamp(1.35rem, 5.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.strip__left p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.strip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.strip__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  background: transparent;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.strip__list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.strip__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.strip__icon svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 600px) {
  .strip__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .strip .container {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 3rem;
  }

  .strip__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 960px) {
  .strip {
    padding: 4.5rem 0;
  }

  .strip .container {
    grid-template-columns: 1.1fr 2fr;
    gap: 5rem;
    align-items: center;
  }

  .strip__list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .strip::after {
    display: block;
    content: 'TRANSPORTADORAS';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
}

/* 7. CTA FINAL */
.cta-final {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, var(--dark) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-final::after {
  content: '';
  position: absolute;
  top: -44px;
  left: -44px;
  right: -44px;
  bottom: -44px;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 100%);
}

.cta-final__truck {
  display: none;
}

.cta-final .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final h2 {
  font-size: clamp(1.6rem, 8vw, 4.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 0 80px rgba(204, 28, 47, 0.12);
}

.cta-final h2 .accent {
  color: var(--red);
}

.cta-final p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 480px;
}

.cta-final__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2.2rem;
}

@media (min-width: 960px) {
  .cta-final {
    padding: 9rem 0;
  }

  .cta-final__truck {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(110%) translateY(-38%) scale(0.25);
    height: 72%;
    max-height: 480px;
    width: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform-origin: left center;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 30%, black 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 30%, black 100%);
    transition: opacity 0.6s linear, transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cta-final__truck.visible {
    opacity: 0.62;
    transform: translateX(0) translateY(-38%) scale(1);
    transform-origin: left center;
  }
}

/* FOOTER */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 1.5rem 6% 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__brand .logo {
  justify-content: flex-start;
}

.footer__brand .logo img {
  width: 44px;
  height: 44px;
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}

.footer__nav-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.2rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer__nav-groups {
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
    padding-top: 0.4rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* BOTÃO FLUTUANTE WPP */
.wpp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.38);
  transition: transform var(--transition);
  animation: wpp-pulse 2.5s ease-in-out infinite;
}

.wpp-float svg {
  width: 22px;
  height: 22px;
}

.wpp-float:hover {
  transform: scale(1.1);
  animation: none;
}

@media (min-width: 768px) {
  .wpp-float {
    width: 56px;
    height: 56px;
    bottom: 1.8rem;
    right: 1.8rem;
  }

  .wpp-float svg {
    width: 26px;
    height: 26px;
  }
}

@keyframes wpp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.38);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.15);
  }
}

/* SCROLL PROGRESS BAR */

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 {
    transition-delay: 0.05s;
  }

  .reveal-delay-2 {
    transition-delay: 0.1s;
  }

  .reveal-delay-3 {
    transition-delay: 0.15s;
  }

  .reveal-delay-4 {
    transition-delay: 0.2s;
  }
}

/* Custom Scrollbar — desktop only (mobile usa a barra de progresso do topo) */
@media (min-width: 960px) {
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--dark);
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--red);
  }
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-moz-selection {
  background: var(--red);
  color: var(--white);
}

/* Hover effect for Presence Section Images */
.presence__card img {
  filter: brightness(0.85) !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform;
}

.presence__card:hover img {
  filter: brightness(1.05) !important;
  transform: scale(1.12) !important;
}

/* Glassmorphism Inner Glow for Cards */
.benefit,
.step,
.stat {
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.12), 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* ===== BENTO GRID (Presence Section) ===== */
.presence__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2rem;
  width: 100%;
}

.bento__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

/* Photo-only cells */
.bento__item--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.06) saturate(0.88);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.bento__item--photo:hover img {
  transform: scale(1.06);
  filter: brightness(1.0) contrast(1.06) saturate(1.0);
}

/* Tablet: activate asymmetry */
@media (min-width: 600px) {
  .presence__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
  }

  .bento__item,
  .bento__item.presence__card {
    aspect-ratio: unset;
  }

  .bento__item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento__item--wide {
    grid-column: span 2;
  }
}

/* Desktop: full 4-column bento */
@media (min-width: 960px) {
  .presence__bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 235px;
    gap: 16px;
    margin-top: 3.5rem;
  }

  .bento__item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento__item--wide {
    grid-column: span 2;
  }
}

/* Sub-fotos da seção authority: proporção 4:3 ao invés de 1:1 */
.authority__photo-frame--sub,
.authority__photo-frame--sub img {
  aspect-ratio: 4 / 3;
}

/* Foto principal menor para dar mais espaço às sub-fotos */
.authority__photo-frame {
  aspect-ratio: 4 / 3;
}

.authority__photo-frame img {
  aspect-ratio: 4 / 3;
}

/* Foto em destaque: ocupa as 2 colunas do grid */
.authority__photo-frame--highlight {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.authority__photo-frame--highlight img {
  aspect-ratio: 16 / 7;
}

/* ===== HERO FULLBLEED ===== */
.hero--fullbg {
  background-image: url('assets/FUTSAL-378.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero--fullbg {
    grid-template-columns: none !important;
  }
}

.hero--fullbg::before { opacity: 0 !important; }
.hero--fullbg::after  { opacity: 0; }

/* 1. Overlay: gradiente central mais denso onde o texto vive */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.90) 100%
  );
  z-index: 1;
}

/* 4. Hierarquia: copy centralizada com espaçamento generoso */
.hero--fullbg .hero__copy--centered {
  position: relative !important;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  padding: 8rem 2rem 5rem;
  gap: 0;
}

.hero--fullbg .hero__copy--centered .label {
  padding-right: 0.8rem !important;
  margin-right: 0 !important;
  margin-bottom: 1.5rem;
}

/* Título: sombra forte para destacar sobre qualquer fundo */
.hero--fullbg .hero__copy--centered h1 {
  margin-bottom: 1.5rem;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(0, 0, 0, 0.7);
}

/* 2. Subtítulo: quase branco, peso 500, tamanho ligeiramente maior */
.hero--fullbg .hero__sub {
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* 4. CTAs: linha horizontal com espaço entre os botões */
.hero--fullbg .hero__ctas {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

/* 3. Botão secundário: borda visível + fundo translúcido para não sumir */
.hero--fullbg .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  font-weight: 600;
}

.hero--fullbg .btn-ghost:hover {
  border-color: var(--red);
  background: rgba(204, 28, 47, 0.18);
}

/* ===== STATEMENT (seção divisória minimalista) ===== */
.statement {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.statement__text {
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.01em;
}

.statement__aside {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
