/* ══════════════════════════════════════════
   ROMERO FERNANDES — style.css
   Paleta: #790000 | #2f2f2f | #e6e6e6
   ══════════════════════════════════════════ */

/* ── Reset & Variables ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #790000;
  --red-lt: #9a0000;
  --dark: #2f2f2f;
  --darker: #1a1a1a;
  --light: #e6e6e6;
  --white: #ffffff;
  --off: #f5f3f1;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-serif: "Playfair Display", serif;

  --r: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease var(--delay, 0s),
    transform 0.65s ease var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Container ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.25rem, 5vw, 3rem);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__logo {
  color: var(--red);
  width: 80px;
  height: 28px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav__logo:hover {
  color: var(--red-lt);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
}
.nav__links li a:hover {
  color: var(--red);
}

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--r);
  transition: background var(--transition) !important;
}
.nav__cta:hover {
  background: var(--red-lt) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: var(--transition);
}

/* ── Mobile Drawer ── */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(280px, 80vw);
  height: 100vh;
  background: var(--darker);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open {
  right: 0;
}
.drawer ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.drawer__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}
.drawer__link:hover {
  color: var(--red);
}

/* ══════════════════════════════════════════
   HERO — PNG sem fundo, integração total
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--darker);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* ── Textura de fundo sutil (padrão geométrico) ── */
.hero__bg-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 60px
    );
}

/* ── Luz vermelha ambiente — emana do lado direito ── */
.hero__glow {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(121, 0, 0, 0.18) 0%,
    rgba(121, 0, 0, 0.06) 45%,
    transparent 75%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Texto — coluna esquerda ── */
.hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(6rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4.5rem)
    clamp(4rem, 7vw, 6rem);
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(230, 230, 230, 0.45);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 7.5vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: 0.01em;
  text-transform: none;
  /* vermelho com drop-shadow branco mínimo para legibilidade sem sombra suja */
  color: var(--red);
  filter: drop-shadow(0 0 20px rgba(121, 0, 0, 0.5));
}

.hero__sub {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(230, 230, 230, 0.58);
  margin-bottom: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ── Credenciais inline ── */
.hero__creds {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__cred {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__cred strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__cred span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230, 230, 230, 0.38);
  line-height: 1.4;
}
.hero__cred-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Foto PNG — coluna direita ── */
.hero__photo {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100svh;
}

/* Reflexo/sombra no "chão" embaixo da figura */
.hero__photo-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(121, 0, 0, 0.22) 0%,
    rgba(121, 0, 0, 0.06) 50%,
    transparent 80%
  );
  filter: blur(12px);
  z-index: 1;
}

/* Linha de chão — separação sutil base/foto */
.hero__photo-ground {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(121, 0, 0, 0.35) 35%,
    rgba(121, 0, 0, 0.35) 65%,
    transparent
  );
  z-index: 2;
}

.hero__photo img {
  /* PNG com fundo transparente — encosta no chão */
  position: relative;
  z-index: 3;
  height: 90%;
  max-height: 800px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  /* sombra projetada lateral para dar profundidade */
  filter: drop-shadow(-28px 0 48px rgba(0, 0, 0, 0.55))
    drop-shadow(0 20px 32px rgba(0, 0, 0, 0.35));
}

/* ── Scroll hint ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}
.hero__scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(230, 230, 230, 0.22);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(121, 0, 0, 0.55), transparent);
  animation: scrollPulse 2.3s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--primary:hover {
  background: var(--red-lt);
  border-color: var(--red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(121, 0, 0, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(230, 230, 230, 0.3);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════
   QUOTE STRIP
   ══════════════════════════════════════════ */
.quote-strip {
  background: var(--red);
  padding: 1.4rem 0;
  overflow: hidden;
}
.quote-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.quote-strip__inner p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section--dark {
  background: var(--darker);
}

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.section--dark .section__title {
  color: var(--white);
}

/* ══════════════════════════════════════════
   FORMATION CARDS
   ══════════════════════════════════════════ */
.cards--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card--formation {
  background: var(--off);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: default;
}
.card--formation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card--formation:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.card--formation:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.card__icon svg {
  width: 100%;
  height: 100%;
}
.card__tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.card--formation h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card__inst {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
}

.service {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.service:hover {
  background: rgba(121, 0, 0, 0.08);
}

.service__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.service__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}
.service__body li {
  font-size: 0.88rem;
  color: rgba(230, 230, 230, 0.55);
  letter-spacing: 0.03em;
}
.service__body li::before {
  content: "— ";
  color: var(--red);
}

.service__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.service__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translate(2px, -2px);
}

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats {
  background: var(--red);
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__div {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.stat__dados {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
  max-width: 680px;
  position: relative;
}
.testimonial {
  display: none;
  flex-direction: column;
  gap: 2rem;
}
.testimonial.active {
  display: flex;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.65;
  color: var(--dark);
  position: relative;
  padding-left: 2rem;
}
.testimonial__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.2em;
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  font-family: var(--font-serif);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial__author span {
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.05em;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.t-prev,
.t-next {
  background: none;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  transition: all var(--transition);
}
.t-prev:hover,
.t-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 47, 47, 0.2);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.dot.active {
  background: var(--red);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: var(--darker);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(121, 0, 0, 0.05);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: #111;
  color: var(--light);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  color: var(--red);
  width: 80px;
  flex-shrink: 0;
}
.nav__logo:hover {
  color: var(--red-lt);
}
.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(230, 230, 230, 0.6);
}
.footer__brand em {
  font-family: var(--font-serif);
  font-style: italic;
}

.footer__contact h4,
.footer__social h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact a,
.footer__contact span {
  font-size: 0.9rem;
  color: rgba(230, 230, 230, 0.6);
  transition: color var(--transition);
}
.footer__contact a:hover {
  color: var(--red);
}

.social-links {
  display: flex;
  gap: 0.85rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(230, 230, 230, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 230, 230, 0.6);
  transition: all var(--transition);
}
.social-links a svg {
  width: 18px;
  height: 18px;
}
.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(230, 230, 230, 0.35);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── Navbar ── */
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  /* ── Hero mobile: empilhado, PNG atrás como fantasma ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 100svh;
  }

  /* Foto PNG vira fantasma de fundo no mobile */
  /* Hero mobile organizado */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-top: 100px;
  }

  .hero__content {
    order: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    z-index: 3;
  }

  .hero__photo {
    order: 2;
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 1rem;
    z-index: 2;
  }

  .hero__photo img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 0 30px rgba(0, 0, 0, 0.45));
  }
  .hero__photo-shadow {
    display: none;
  }
  .hero__photo-ground {
    display: none;
  }

  /* Escurece a base para o texto ser legível */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(17, 17, 17, 0.98) 0%,
      rgba(17, 17, 17, 0.82) 40%,
      rgba(17, 17, 17, 0.35) 75%,
      transparent 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__eyebrow {
    justify-content: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__creds {
    justify-content: center;
  }
  .hero__scroll-hint {
    display: none;
  }

  /* ── Serviços ── */
  .service {
    grid-template-columns: 3.5rem 1fr;
  }
  .service__arrow {
    display: none;
  }

  /* ── Footer ── */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero__creds {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__cred-divider {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cards--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .cards--4 {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: clamp(3.2rem, 14vw, 4rem);
  }
}
