/* ============================================================
   HENRIQUE ANTUNES ADVOCACIA — Landing Page
   Mobile-First Responsive Design
   ============================================================ */

/* 1. CUSTOM PROPERTIES */
:root {
  --navy: #0D1F3C;
  --navy-mid: #1A3A5C;
  --teal: #1E7090;
  --gold: #C8A84B;
  --gold-light: #D4B466;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-panel: #EEF2F7;
  --text-muted: rgba(255, 255, 255, 0.68);
  --border-gold: rgba(200, 168, 75, 0.28);

  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-bree: 'Bree Serif', Georgia, serif;

  --container-max: 1200px;
  --container-pad: 20px;
  --sec-pad: 60px;
  --header-h: 64px;

  --tr: 0.28s ease;
  --shadow-card: 0 4px 24px rgba(13, 31, 60, 0.10);
  --shadow-hover: 0 8px 40px rgba(13, 31, 60, 0.18);
}

/* 2. RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--header-h);
  position: relative;
  /* Compensa o header fixo */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* 3. TYPOGRAPHY — mobile first */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.15rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.gold-line {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--sec-pad) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section--light {
  background: var(--off-white);
  color: var(--navy);
}

.section--white {
  background: var(--white);
  color: var(--navy);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section__lead {
  font-size: 1rem;
  opacity: 0.72;
  margin-top: 12px;
  line-height: 1.75;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  white-space: normal;
  line-height: 1.3;
  text-align: center;
}

.btn svg {
  flex-shrink: 0;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, 0.38);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background: #186280;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 112, 144, 0.38);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

/* 6. HEADER — fixo em todas as resoluções */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0;
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
  transition: background var(--tr), box-shadow var(--tr);
}

#header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.38);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

/* Logo composta: ícone arredondado + texto */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Container da logo */
.header__logo-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  /* Cantos arredondados */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover suave e elegante na própria imagem */
.header__logo:hover .header__logo-img {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(200, 168, 75, 0.3);
  /* Glow dourado no hover */
}

.header__logo-text {
  font-family: var(--font-bree);
  font-size: 0.78rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.01em;
  transition: color 0.35s ease;
}

.header__logo:hover .header__logo-text {
  color: rgba(255, 255, 255, 0.95);
}

.header__logo-text em {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: letter-spacing 0.35s ease;
}

.header__logo:hover .header__logo-text em {
  letter-spacing: 0.26em;
}

.header__nav {
  display: none;
  /* hidden mobile */
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header__nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--tr);
}

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

.header__cta {
  display: none;
  flex-shrink: 0;
}

/* hidden mobile */

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.header__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — redesigned */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 1001; /* Fica acima do header principal */
  flex-direction: column;
  overflow-y: auto;
  /* Slide-in animation */
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
  animation: mobileNavIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes mobileNavIn {
  from {
    transform: translateX(-100%);
    opacity: 0.6;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Header da nav mobile */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Wrapper na logo do mobile nav */
.mobile-nav__logo-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mobile-nav__logo-text {
  font-family: var(--font-bree);
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}

.mobile-nav__logo-text em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-nav__close {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--tr);
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Links principais */
.mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  font-family: var(--font-bree);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--tr), background var(--tr), padding-left var(--tr);
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.06);
  padding-left: 34px;
}

.mobile-nav__link-num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 22px;
}

/* Footer da nav mobile */
.mobile-nav__footer {
  padding: 24px;
  border-top: 1px solid rgba(200, 168, 75, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.mobile-nav__wa {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
}

.mobile-nav__oab {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ============================================================
   7. HERO — Full-bleed photo background, mobile-first
   ============================================================ */
.hero {
  position: relative;
  height: calc(100svh - var(--header-h));
  min-height: 580px;
  max-height: 900px;
  background-color: var(--navy);
  overflow: hidden;
  display: block;
}

/* Foto como fundo parcial (fade out) */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  /* Foco no rosto/ombros — 25% vertical mantém o rosto centralizado na caixa */
  display: block;
  transition: transform 10s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1.025);
}

/* Foto Box (Escondida no mobile, pois o mobile usa full bleed) */
.hero__photo-wrap {
  display: none;
}

/* Overlay gradiente — mobile: funde a foto com o fundo azul sólido perfeitamente */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 57%; /* Cobre a foto + margem para fusão suave */
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(13, 31, 60, 0.1) 0%,
      rgba(13, 31, 60, 0) 10%,
      rgba(13, 31, 60, 0.5) 60%,
      rgba(13, 31, 60, 0.98) 90%,
      rgba(13, 31, 60, 1) 100%);
  pointer-events: none;
}

/* Conteúdo — absolutamente posicionado na parte inferior */
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  padding: 0 var(--container-pad) 24px;
}

/* Elementos de texto — sempre claros pois estão sobre overlay escuro */
.hero__text {
  max-width: 520px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0;
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__headline em {
  color: var(--gold);
  font-style: normal;
}

.hero__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 10px;
}

.hero__subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}

.hero__actions .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
}

.hero__badge {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* 8. STATS BAR — mobile first */
.stats-bar {
  background: var(--gold);
  padding: 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid rgba(13, 31, 60, 0.15);
  border-bottom: 1px solid rgba(13, 31, 60, 0.1);
  position: relative;
}

.stat-item:nth-child(2) {
  border-right: none;
}

.stat-item:nth-child(3) {
  border-bottom: none;
}

.stat-item:nth-child(4) {
  border-right: none;
  border-bottom: none;
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-item__number sup {
  font-size: 1rem;
  font-weight: 700;
}

.stat-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(13, 31, 60, 0.62);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* 9. PAIN SECTION */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  border-radius: 8px;
  padding: 22px 18px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--tr), box-shadow var(--tr);
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.pain-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 112, 144, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.pain-card__text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
}

/* 10. INFO SECTION */
.info-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.info__lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 14px 0 28px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: background var(--tr), border-color var(--tr);
  cursor: default;
}

.info-card:hover {
  background: rgba(200, 168, 75, 0.07);
  border-color: rgba(200, 168, 75, 0.55);
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card__title {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 7px;
}

.info-card__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* 11. PARA QUEM */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.profile-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr);
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.profile-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(13, 31, 60, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--navy);
}

.profile-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.profile-card__desc {
  font-size: 0.84rem;
  color: rgba(13, 31, 60, 0.6);
  line-height: 1.65;
}

/* 12. SOBRE — com efeito sombra na foto */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.sobre__photo-wrap {
  position: relative;
  flex-shrink: 0;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

/* Borda dourada decorativa */
.sobre__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 10px;
  opacity: 0.22;
  transform: translate(10px, 10px);
  z-index: 0;
}

/* Imagem com sombra cinematográfica */
.sobre__photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  display: block;

  /* EFEITO SOMBREADO — sombra profunda e dramática */
  box-shadow:
    0 8px 32px rgba(13, 31, 60, 0.55),
    0 20px 60px rgba(13, 31, 60, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(200, 168, 75, 0.15);

  filter: drop-shadow(0 12px 40px rgba(13, 31, 60, 0.6));
}

/* Overlay gradiente na parte inferior da foto */
.sobre__photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top,
      rgba(13, 31, 60, 0.72) 0%,
      rgba(13, 31, 60, 0.30) 55%,
      transparent 100%);
  border-radius: 0 0 8px 8px;
  z-index: 2;
  pointer-events: none;
}

.sobre__oab {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-bottom: 18px;
  margin-top: 4px;
}

.sobre__bio {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
  margin-bottom: 24px;
}

.sobre__procon {
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.sobre__procon strong {
  color: var(--gold);
}

.sobre__certs-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sobre__certs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.68);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sobre__certs li:last-child {
  border-bottom: none;
}

.sobre__certs li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* 13. COMO FUNCIONA */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  padding-top: 8px;
}

.steps::before {
  display: none;
}

.step {
  text-align: center;
  padding: 0 12px 24px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 68px;
  height: 68px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  border: 3px solid var(--teal);
  position: relative;
  transition: transform var(--tr);
}

.step__num::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(30, 112, 144, 0.22);
}

.step:hover .step__num {
  transform: scale(1.07);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.84rem;
  color: rgba(13, 31, 60, 0.6);
  line-height: 1.65;
}

/* 14. BENEFÍCIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(200, 168, 75, 0.14);
  transition: all var(--tr);
}

.benefit-card:hover {
  background: rgba(200, 168, 75, 0.08);
  border-color: rgba(200, 168, 75, 0.38);
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 168, 75, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.62;
}

/* 15. ÉTICA */
.etica {
  padding: 40px 0;
  background: var(--white);
}

.etica__box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 8px;
  padding: 24px 22px;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.etica__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.etica__text {
  font-size: 0.83rem;
  color: rgba(13, 31, 60, 0.6);
  line-height: 1.75;
}

/* 16. CTA FINAL */
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

/* Ebook mockup */
.ebook-mockup {
  background: var(--navy-mid);
  border-radius: 10px;
  padding: 36px 28px 32px;
  max-width: 100%;
  margin: 0 auto 24px;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ebook-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.ebook-mockup__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.ebook-mockup__logo img {
  width: 64px;
  /* Aumentado ~150% (era 42px) */
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  /* Cantos arredondados iguais ao header */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover suave e elegante imitando o header */
.ebook-mockup__logo:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(200, 168, 75, 0.3);
}

.ebook-mockup__logo-text {
  font-family: var(--font-bree);
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ebook-mockup__logo-text em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ebook-mockup__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ebook-mockup__sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin-bottom: 18px;
}

.ebook-mockup__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cta-final__info h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-final__info {
  text-align: center;
}

/* Form */
.form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 22px;
}

.form-box h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.form-box__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.77rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--tr), background var(--tr);
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.form-group input.field-error {
  border-color: #e05050;
}

.field-msg {
  font-size: 0.72rem;
  margin-top: 4px;
  color: #e07070;
  display: none;
}

.form-group.has-error .field-msg {
  display: block;
}

.form__disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}

.form__success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.form__success-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 168, 75, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.form__success h4 {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 8px;
}

.form__success p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-separator {
  text-align: center;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-separator p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* 17. FOOTER */
.footer {
  background: #060f1e;
  color: rgba(255, 255, 255, 0.55);
  padding: 48px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Logo composta no footer */
.footer__logo {
  margin-bottom: 14px;
  cursor: pointer;
  /* Adicionado para indicar interatividade no hover */
}

.footer__logo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover suave imitando header */
.footer__logo:hover .footer__logo-img {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(200, 168, 75, 0.3);
}

.footer__logo-text {
  font-family: var(--font-bree);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}

.footer__logo-text em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__list li {
  margin-bottom: 9px;
  font-size: 0.84rem;
}

.footer__list a {
  transition: color var(--tr);
}

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

.footer__bottom {
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 720px;
  margin: 0 auto 12px;
  line-height: 1.75;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* 18. WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  z-index: 900;
  transition: transform var(--tr), box-shadow var(--tr);
  animation: wa-pulse 3.2s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.wa-float svg {
  color: var(--white);
}

@keyframes wa-pulse {

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

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65), 0 0 0 9px rgba(37, 211, 102, 0.09);
  }
}

/* 19. SCROLL ANIMATIONS */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim][data-delay="1"] {
  transition-delay: 0.08s;
}

[data-anim][data-delay="2"] {
  transition-delay: 0.18s;
}

[data-anim][data-delay="3"] {
  transition-delay: 0.28s;
}

[data-anim][data-delay="4"] {
  transition-delay: 0.38s;
}

[data-anim][data-delay="5"] {
  transition-delay: 0.48s;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13, 31, 60, 0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   RESPONSIVE — TABLET  (min-width: 540px)
   ============================================================ */
@media (min-width: 540px) {
  :root {
    --container-pad: 28px;
    --sec-pad: 72px;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  /* Foto de corpo inteiro: mais altura no tablet */
  .hero__light {
    min-height: 72vw;
    max-height: 85vw;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
  }

  .stat-item:nth-child(2) {
    border-right: 1px solid rgba(13, 31, 60, 0.15);
  }

  .stat-item:last-child {
    border-right: none;
  }

  .sobre__photo-wrap {
    max-width: 280px;
  }

  .form-box {
    padding: 32px 28px;
  }

  .etica__box {
    padding: 28px 32px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE  (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --container-pad: 36px;
    --sec-pad: 88px;
    --header-h: 70px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  /* Header: mostrar nav links e CTA */
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__burger {
    display: none;
  }

  /* Logo: aumentar no tablet */
  .header__logo-wrap {
    width: 42px;
    height: 42px;
  }

  /* ── Hero Split: desktop layout ── */
  .hero {
    display: flex;
    align-items: center;
    height: calc(100vh - var(--header-h));
    min-height: 600px;
    max-height: unset;
    background: var(--navy);
  }

  /* Conteúdo em Grid (2 colunas) */
  /* ── Hero Desktop: Grid com Foto em Caixa (Estilo 'Sobre') ── */
  .hero__bg,
  .hero__overlay {
    display: none; /* Oculta a foto de fundo e overlay no desktop */
  }

  /* Conteúdo em Grid (2 colunas) */
  .hero__content {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: center;
    padding: 0 var(--container-pad);
  }

  /* Exibe a foto em caixa e estiliza */
  .hero__photo-wrap {
    display: block;
    position: relative;
  }

  /* Borda dourada decorativa idêntica à seção Sobre */
  .hero__photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 10px;
    opacity: 0.22;
    transform: translate(10px, 10px);
    z-index: 0;
  }

  .hero__photo-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }


  .hero__content::before {
    content: '';
    position: absolute;
    right: calc(30% - 120px);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 260px;
    height: 260px;
    border: 1px solid rgba(200, 168, 75, 0.08);
    pointer-events: none;
    z-index: 0;
  }

  .hero__badge {
    display: block;
  }

  .hero__headline {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    width: auto;
  }

  /* Info split lado a lado */
  .info-split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  /* Steps: 4 colunas */
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .steps::before {
    display: block;
    content: '';
    position: absolute;
    top: 50px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--teal) 0%, rgba(30, 112, 144, 0.2) 100%);
    z-index: 0;
  }

  /* Profile grid: 4 colunas */
  .profile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Benefits: 3 colunas */
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Sobre lado a lado */
  .sobre__inner {
    grid-template-columns: 300px 1fr;
    gap: 52px;
    align-items: center;
  }

  .sobre__photo-wrap {
    max-width: 300px;
    margin: 0;
  }

  /* CTA final lado a lado */
  .cta-final__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .cta-final__info {
    text-align: left;
  }

  .ebook-mockup {
    max-width: 300px;
  }

  /* Footer grid */
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-item__number {
    font-size: 2.1rem;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP  (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --container-pad: 48px;
    --sec-pad: 108px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero__headline {
    font-size: 3rem;
  }

  .hero__content {
    padding: 0 var(--container-pad);
    grid-template-columns: 1fr 380px; /* Mesma largura da foto da seção Sobre */
    gap: 72px; /* Mesmo gap da seção Sobre */
  }

  .hero__text {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .sobre__inner {
    grid-template-columns: 380px 1fr;
    gap: 72px;
  }

  .sobre__photo-wrap {
    max-width: 380px;
  }

  .header__nav {
    gap: 28px;
  }

  /* Logo no desktop */
  .header__logo-wrap {
    width: 48px;
    height: 48px;
  }

  .stat-item__number {
    font-size: 2.2rem;
  }

  .info-split {
    gap: 72px;
  }

  .cta-final__inner {
    gap: 68px;
  }

  .form-box {
    padding: 38px 34px;
  }

  .etica__box {
    padding: 32px 40px;
  }
}

/* ============================================================
   RESPONSIVE — WIDE DESKTOP  (min-width: 1280px)
   ============================================================ */
@media (min-width: 1280px) {
  :root {
    --container-pad: clamp(48px, 5vw, 80px);
    --sec-pad: 128px;
  }

  .hero__text {
    max-width: 600px;
  }
}