/* ═══════════════════════════════════════════════════════════════════
   LOBA DO MAR · LANDING PAGE
   Premium nautical · alta conversão · mobile-first
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Cores */
  --navy-deepest: #051221;
  --navy-deep:    #061b34;
  --navy:         #0b2a4a;
  --navy-soft:    #14385f;
  --cream:        #faf6ef;
  --sand:         #f0e9dc;
  --sand-dark:    #e2d6bf;
  --gold:         #e8b04b;
  --gold-light:   #f1c876;
  --gold-dark:    #c69431;
  --sunset:       #f08a3d;
  --text:         #0a1428;
  --text-soft:    #364257;
  --muted:        #5a6478;
  --border:       #d9ccb3;
  --white:        #ffffff;

  /* Tipografia */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espaçamento */
  --container:    1200px;
  --gutter:       clamp(18px, 4vw, 40px);
  --section-pad:  clamp(64px, 9vw, 130px);

  /* Outros */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(6, 27, 52, 0.06);
  --shadow:       0 12px 40px rgba(6, 27, 52, 0.12);
  --shadow-lg:    0 24px 64px rgba(6, 27, 52, 0.18);
}

/* ───────────── Reset ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--navy-deep); }

/* ───────────── Container ───────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ───────────── Tipografia base ───────────── */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  overflow-wrap: break-word;
  hyphens: auto;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.display--md   { font-size: clamp(1.75rem, 3.8vw, 3.1rem); line-height: 1.1; }
.display--lg   { font-size: clamp(2.4rem, 5.8vw, 4.8rem); }
.display--light { color: var(--cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-light); }

.lead {
  font-size: 1.075rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}

.section-head {
  margin-bottom: clamp(36px, 6vw, 64px);
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}

/* ───────────── Section bases ───────────── */
.section {
  padding-block: var(--section-pad);
}
.section--light { background: var(--cream); }
.section--cream { background: var(--sand); }
.section--navy  { background: var(--navy-deep); color: var(--cream); }
.section--navy .lead { color: var(--cream); }

/* ───────────── Botões ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .2s ease, box-shadow .25s ease, color .2s ease;
  white-space: nowrap;
  min-height: 48px;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: 10px 20px; font-size: 0.875rem; min-height: 40px; }
.btn--lg  { padding: 18px 34px; font-size: 1rem; min-height: 54px; }
.btn--xl  { padding: 22px 42px; font-size: 1.075rem; min-height: 60px; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold);
  color: var(--navy-deepest);
  box-shadow: 0 6px 24px rgba(232, 176, 75, 0.42);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 32px rgba(232, 176, 75, 0.55);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.btn--outline-dark:hover {
  background: var(--navy-deep);
  color: var(--cream);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(5, 18, 33, 0.6), rgba(5, 18, 33, 0));
  transition: background .35s ease, padding .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.is-scrolled {
  background: rgba(6, 27, 52, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  height: 28px;
  width: auto;
  display: block;
  background: var(--cream);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform .25s ease;
}
.nav__brand:hover .nav__logo {
  transform: translateY(-1px);
}
.nav__links {
  display: flex;
  gap: 30px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a {
  opacity: 0.88;
  transition: opacity .2s ease;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 960px) {
  .nav__links { display: none; }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 18, 33, 0.55) 0%,
      rgba(5, 18, 33, 0.35) 35%,
      rgba(5, 18, 33, 0.55) 70%,
      rgba(5, 18, 33, 0.92) 100%
    );
}
.hero__inner {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .display {
  color: var(--cream);
  text-wrap: balance;
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero .display br.mobile-br { display: none; }
.hero__logo { display: none; }
@media (max-width: 640px) {
  .hero .display br.mobile-br { display: inline; }
  .hero__logo {
    display: block;
    height: 52px;
    width: auto;
    margin: 0 auto 32px;
    background: var(--cream);
    padding: 16px 32px;
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  }
}
.hero__sub {
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  margin: 24px auto 36px;
  width: 100%;
  max-width: 640px;
  color: rgba(250, 246, 239, 0.92);
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.hero__reinforce {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.82);
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(250, 246, 239, 0.45);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* ═══════════════════ CREDIBILIDADE ═══════════════════ */
.credibility {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 34px 0;
}
.credibility__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.credibility__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 260px;
}
.credibility__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--gold);
  line-height: 1;
  min-width: 30px;
}
.credibility__item p {
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.4;
}
.credibility__divider {
  width: 1px;
  height: 36px;
  background: rgba(232, 176, 75, 0.3);
}
@media (max-width: 920px) {
  .credibility__divider { display: none; }
  .credibility__list { gap: 18px; }
}

/* ═══════════════════ BULLETS · PARA QUEM É ═══════════════════ */
.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 44px;
}
@media (max-width: 720px) {
  .bullets { grid-template-columns: 1fr; gap: 0; }
}
.bullets li {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.bullets li:last-child {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) {
  .bullets li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}
.bullets__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dark);
  line-height: 1.2;
  min-width: 28px;
}
.bullets li p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-soft);
  padding-top: 4px;
}

/* ═══════════════════ CATEGORIAS ═══════════════════ */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) {
  .categories { grid-template-columns: 1fr; gap: 16px; }
}
.category {
  position: relative;
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.category__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 176, 75, 0.18), rgba(232, 176, 75, 0.04));
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.category__icon svg { width: 32px; height: 32px; }
.category header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.category__index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.88rem;
}
.category h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  line-height: 1.15;
}
.category p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}
.category--featured {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: var(--navy-deep);
  color: var(--cream);
}
.category--featured .category__icon {
  background: linear-gradient(135deg, rgba(232, 176, 75, 0.22), rgba(232, 176, 75, 0.06));
  color: var(--gold);
}
.category--featured .category__index {
  background: var(--gold);
  color: var(--navy-deep);
}
.category--featured h3 { color: var(--cream); }
.category--featured p { color: rgba(250, 246, 239, 0.85); }

/* ═══════════════════ PROBLEMA ═══════════════════ */
.problem {
  position: relative;
  padding-block: var(--section-pad);
  color: var(--cream);
  overflow: hidden;
}
.problem__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.problem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.problem__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 18, 33, 0.95) 0%, rgba(5, 18, 33, 0.75) 60%, rgba(11, 42, 74, 0.55) 100%);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .problem__inner { grid-template-columns: 1fr; gap: 28px; }
}
.problem__heading { display: flex; flex-direction: column; }
.problem__title {
  color: var(--cream);
  text-wrap: balance;
}
.problem__text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.88);
}
.problem__text p + p { margin-top: 18px; }
.problem__highlight {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.35rem !important;
  line-height: 1.35 !important;
  color: var(--gold-light) !important;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-top: 28px !important;
}

/* ═══════════════════ BENEFÍCIOS ═══════════════════ */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .benefits { grid-template-columns: 1fr; gap: 14px; }
}
.benefit {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 204, 179, 0.55);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 176, 75, 0.18), rgba(232, 176, 75, 0.05));
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.benefit__icon svg { width: 28px; height: 28px; }
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.benefit p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ═══════════════════ SOBRE ═══════════════════ */
.about {
  background: var(--cream);
  padding-block: var(--section-pad);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about__media img,
.about__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.about__badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.03em;
}
.about__badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 5px;
}
.about__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}
.about__text p + p { margin-top: 14px; }
.about__text .display { margin-bottom: 24px; }
.about__text .btn { margin-top: 28px; }

.callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(232, 176, 75, 0.22), rgba(232, 176, 75, 0.1));
  border: 1px solid rgba(232, 176, 75, 0.55);
  border-left: 4px solid var(--gold-dark);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(232, 176, 75, 0.18);
}
.callout__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
}
.callout p {
  margin: 0;
  font-size: 0.98rem !important;
  line-height: 1.55;
  color: var(--navy-deep) !important;
}
.callout p strong { color: var(--navy-deepest); font-weight: 700; }

@media (max-width: 640px) {
  .callout { padding: 16px 18px; gap: 12px; }
  .callout__icon { width: 34px; height: 34px; }
  .callout p { font-size: 0.94rem !important; }
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 820px) {
  .pricing { grid-template-columns: 1fr; gap: 16px; }
}
.price {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 176, 75, 0.18);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease;
}
.price:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 176, 75, 0.4);
}
.price--featured {
  background: linear-gradient(180deg, rgba(232, 176, 75, 0.14), rgba(232, 176, 75, 0.02));
  border-color: var(--gold);
}
.price__badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--gold);
  color: var(--navy-deepest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.price__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--cream);
}
.price__currency {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  opacity: 0.7;
}
.price__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price__terms {
  font-size: 0.92rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.price__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.82);
  margin-bottom: 28px;
}
.price__installments {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.price__installments strong {
  color: var(--gold);
  font-weight: 700;
}
.price--packages { display: flex; flex-direction: column; }
.price__lead {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.88);
  margin-bottom: 18px;
}
.packages {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 176, 75, 0.18);
  border-radius: var(--radius);
  margin-bottom: 22px;
  overflow: hidden;
}
.packages summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--cream);
  transition: background .2s ease;
}
.packages summary::-webkit-details-marker { display: none; }
.packages summary:hover { background: rgba(255, 255, 255, 0.06); }
.packages__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.packages__icon::before,
.packages__icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: var(--gold);
  transition: transform .3s ease;
}
.packages__icon::before {
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.packages__icon::after {
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}
.packages[open] .packages__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.packages__list {
  padding: 4px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeIn .3s ease;
}
.packages__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(232, 176, 75, 0.12);
}
.packages__list li:first-child { border-top: none; }
.packages__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.packages__head strong {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.packages__price {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.85);
  white-space: nowrap;
}
.packages__price b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.packages__price em {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(250, 246, 239, 0.65);
  margin-left: 4px;
}
.packages__list > li > span {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(250, 246, 239, 0.72);
}
.packages__note {
  padding: 12px 20px 18px;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(250, 246, 239, 0.68);
  border-top: 1px solid rgba(232, 176, 75, 0.12);
}
.price--packages .btn { margin-top: auto; }
.pricing__closing {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--gold-light);
  max-width: 620px;
  margin-inline: auto;
  text-wrap: balance;
}

/* ═══════════════════ LOCATION ═══════════════════ */
.location {
  background: var(--sand);
  padding-block: var(--section-pad);
}
.location__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .location__inner { grid-template-columns: 1fr; gap: 36px; }
}
.location__text p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cities li {
  background: rgba(11, 42, 74, 0.06);
  border: 1px solid rgba(11, 42, 74, 0.12);
  color: var(--navy-deep);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.location__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}
.location__media img,
.location__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__pin {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 246, 239, 0.96);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--gold-dark);
}
.location__pin > div {
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: 1.2;
}
.location__pin strong {
  font-size: 0.92rem;
  font-weight: 600;
}
.location__pin span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
  max-width: 860px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 2px 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-dark); }
.faq__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  flex: 1;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: var(--gold-dark);
  transition: transform .3s ease;
}
.faq__icon::before {
  width: 11px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px; height: 11px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--navy-deep); }

.faq__a {
  padding: 0 4px 22px;
  animation: fadeIn .35s ease;
}
.faq__a p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 720px;
}
.faq__a p + p { margin-top: 6px; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════ CTA FINAL ═══════════════════ */
.cta-final {
  position: relative;
  padding-block: clamp(90px, 12vw, 160px);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-final__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6, 27, 52, 0.55), rgba(5, 18, 33, 0.85)),
    linear-gradient(180deg, rgba(5, 18, 33, 0.6), rgba(5, 18, 33, 0.8));
}
.cta-final__inner {
  max-width: 820px;
  margin-inline: auto;
}
.cta-final .display {
  color: var(--cream);
  text-wrap: balance;
  margin-bottom: 24px;
}
.cta-final__text {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.88);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-final__reinforce {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.75);
  margin-top: 22px;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--navy-deepest);
  color: rgba(250, 246, 239, 0.72);
  padding: 44px 0 28px;
  font-size: 0.9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 44px;
  align-items: center;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__links { justify-content: center; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo {
  height: 30px;
  width: auto;
  background: var(--cream);
  padding: 9px 18px;
  border-radius: 999px;
  flex-shrink: 0;
}
.footer__brand > div {
  display: flex;
  flex-direction: column;
  color: var(--cream);
}
.footer__brand strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.footer__brand span {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.6);
}
.footer__links {
  display: flex;
  gap: 22px;
}
.footer__links a {
  font-weight: 500;
  color: var(--cream);
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(250, 246, 239, 0.08);
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.5);
}

/* ═══════════════════ FLOAT WHATSAPP ═══════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(0.85); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════ ANIMAÇÕES ENTRADA ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVO · MOBILE FIRST POLISH
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet pequeno e mobile (≤ 720px) */
@media (max-width: 720px) {
  :root {
    --section-pad: clamp(56px, 13vw, 80px);
  }
  .display { font-size: clamp(1.65rem, 7vw, 2.4rem); }
  .display--md { font-size: clamp(1.5rem, 5.5vw, 2.1rem); }
  .display--lg { font-size: clamp(1.85rem, 7.5vw, 2.6rem); }
}

/* Mobile (≤ 640px) — onde mora 80% da galera */
@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section-pad: 56px;
  }
  .nav__cta { display: none; }
  .nav { padding: 12px 0; background: linear-gradient(180deg, rgba(5, 18, 33, 0.4), rgba(5, 18, 33, 0)); }
  .nav__inner { justify-content: center; }
  .nav__brand { display: none; }
  .nav.is-scrolled .nav__brand { display: flex; }
  .nav.is-scrolled { background: rgba(6, 27, 52, 0.95); }
  .nav.is-scrolled .nav__logo { height: 20px; padding: 5px 14px; }

  .hero {
    min-height: 86svh;
    text-align: center;
  }
  .hero__photo { object-position: 60% center; }
  .hero__overlay {
    background:
      radial-gradient(ellipse 100% 70% at center 60%,
        rgba(5, 18, 33, 0.15) 0%,
        rgba(5, 18, 33, 0.55) 55%,
        rgba(5, 18, 33, 0.85) 100%),
      linear-gradient(180deg,
        rgba(5, 18, 33, 0.45) 0%,
        rgba(5, 18, 33, 0.15) 30%,
        rgba(5, 18, 33, 0.55) 75%,
        rgba(5, 18, 33, 0.95) 100%);
  }
  .hero__inner {
    padding-top: 80px;
    padding-bottom: 40px;
    justify-content: center;
    gap: 0;
  }
  .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    color: var(--gold-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }
  .hero .display {
    font-size: clamp(2.3rem, 8.6vw, 2.9rem) !important;
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 700;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
    padding: 0 6px;
    margin-inline: calc(var(--gutter) * -1);
  }
  .hero .display em {
    color: var(--gold-light);
    white-space: nowrap;
    display: inline-block;
  }
  .hero .display br.mobile-br { display: inline; }
  .hero__sub {
    max-width: 92%;
    font-size: clamp(0.94rem, 3.6vw, 1.06rem);
    margin: 22px auto 34px;
    line-height: 1.55;
    color: rgba(250, 246, 239, 0.95);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  }
  .hero__actions { width: 100%; gap: 14px; }
  .hero__reinforce {
    font-size: 0.86rem;
    color: rgba(250, 246, 239, 0.88);
    margin-top: 4px;
  }

  .btn { padding: 14px 24px; font-size: 0.95rem; min-height: 50px; }
  .btn--lg { padding: 17px 32px; font-size: 1rem; min-height: 56px; }
  .btn--xl { padding: 20px 32px; font-size: 1.04rem; min-height: 60px; }
  .hero__actions .btn--lg {
    width: 100%;
    max-width: 340px;
    box-shadow: 0 10px 32px rgba(232, 176, 75, 0.55), 0 0 0 1px rgba(232, 176, 75, 0.2);
  }

  .credibility { padding: 26px 0; }
  .credibility__num { font-size: 1.6rem; }
  .credibility__item p { font-size: 0.88rem; }

  .eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; margin-bottom: 12px; }
  .section-head { margin-bottom: 28px; }

  .bullets li { padding: 18px 0; gap: 14px; }
  .bullets__num { font-size: 1.25rem; min-width: 24px; }
  .bullets li p { font-size: 0.94rem; padding-top: 2px; }

  .category { padding: 26px 22px; }
  .category h3 { font-size: 1.35rem; }
  .category p { font-size: 0.92rem; }
  .category__icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .category__icon svg { width: 26px; height: 26px; }

  .problem__inner { gap: 24px; }
  .problem__title { font-size: 1.65rem !important; }
  .problem__text { font-size: 0.96rem; line-height: 1.65; }
  .problem__highlight { font-size: 1.15rem !important; padding-left: 14px; margin-top: 22px !important; }

  .benefit { padding: 24px 22px; }
  .benefit h3 { font-size: 1.18rem; }
  .benefit p { font-size: 0.92rem; }
  .benefit__icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .benefit__icon svg { width: 24px; height: 24px; }

  .about__media { aspect-ratio: 4 / 4.2; }
  .about__badge {
    bottom: 16px;
    left: 16px;
    padding: 14px 18px;
  }
  .about__badge-num { font-size: 2.1rem; }
  .about__badge-label { font-size: 0.62rem; }
  .about__text p { font-size: 0.96rem; }
  .about__text .display { margin-bottom: 18px; }
  .about__text .btn { margin-top: 22px; }

  .price { padding: 32px 24px; }
  .price__value { font-size: 2.8rem; }
  .price__badge { left: 24px; }

  .cities { margin-top: 18px; }
  .cities li { font-size: 0.82rem; padding: 6px 12px; }

  .location__media { aspect-ratio: 4 / 3; }
  .location__pin { bottom: 14px; left: 14px; padding: 10px 14px; }
  .location__pin strong { font-size: 0.88rem; }
  .location__pin span { font-size: 0.74rem; }

  .faq__item summary { padding: 18px 4px; gap: 14px; }
  .faq__q { font-size: 0.98rem; }
  .faq__icon { width: 24px; height: 24px; }
  .faq__a { padding-bottom: 18px; }
  .faq__a p { font-size: 0.93rem; }

  .cta-final { padding-block: 76px; }
  .cta-final__text { font-size: 0.96rem; margin-bottom: 28px; }
  .cta-final__reinforce { font-size: 0.82rem; }

  .footer { padding: 36px 0 24px; font-size: 0.86rem; }
  .footer__logo { height: 26px; padding: 8px 14px; }
  .footer__brand strong { font-size: 0.96rem; }

  .float-whatsapp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* Mobile médio (≤ 500px) */
@media (max-width: 500px) {
  :root { --gutter: 16px; }
  .display--md { font-size: clamp(1.4rem, 5.2vw, 1.8rem); }
  .problem__title { font-size: clamp(1.4rem, 5.2vw, 1.8rem) !important; }
  .price__value { font-size: clamp(2.4rem, 9.5vw, 3rem); }
}
/* Mobile pequeno (≤ 380px) */
@media (max-width: 380px) {
  .nav__logo { padding: 5px 12px; height: 22px; }
}
