:root {
  --cream: #f4eee8;
  --sand: #ede2d8;
  --ink: #211511;
  --brown: #593528;
  --deep: #351b13;
  --taupe: #9c8274;
  --blush: #d5bfb0;
  --page: 440px;
  --pad: 26px;
  --font-serif: "Bodoni Moda", Georgia, serif;
  --font-sans: "Jost", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: #e8ddd4;
  color: var(--ink);
  line-height: 1.4;
  overflow-x: hidden;
}

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

img[hidden] {
  display: none;
}

a {
  color: var(--brown);
}

a:hover {
  color: var(--deep);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  background: var(--cream);
  position: relative;
  overflow-x: hidden;
}

/* ---------- Buttons ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn:active {
  transform: scale(0.99);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}

a.btn-light:hover,
a.btn-light:focus-visible {
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  height: 48px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
}

a.btn-dark:hover,
a.btn-dark:focus-visible {
  color: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--sand);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72%;
  background: linear-gradient(
    180deg,
    rgba(33, 21, 17, 0) 0%,
    rgba(33, 21, 17, 0.55) 38%,
    rgba(33, 21, 17, 0.94) 100%
  );
  pointer-events: none;
}

.hero-brand {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.26em;
  color: var(--cream);
}

.brand-tag {
  font-size: 7.5px;
  letter-spacing: 0.34em;
  color: var(--blush);
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) calc(96px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 12.8vw, 50px);
  line-height: 0.98;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-top: 14px;
}

.hero-lead {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--blush);
  font-weight: 300;
}

.hero-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(213, 191, 176, 0.3);
  border-bottom: 1px solid rgba(213, 191, 176, 0.3);
}

.price-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.price-value {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  color: var(--cream);
  font-weight: 500;
  margin-top: 2px;
}

.price-gift {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--blush);
  text-align: right;
  padding-bottom: 4px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
}

.dot {
  color: var(--taupe);
}

/* ---------- Resultado ---------- */
.section-intro {
  padding: 78px var(--pad) 36px;
}

.section-intro h2,
.fullface-intro h2,
.experience-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 10.8vw, 42px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.muted {
  color: var(--taupe);
}

.bleed-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 45%;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--blush);
}

.benefit {
  padding: 30px 22px;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.12;
}

.benefit:nth-child(1),
.benefit:nth-child(2) {
  border-bottom: 1px solid var(--blush);
}

.benefit:nth-child(odd) {
  border-right: 1px solid var(--blush);
}

.quote {
  padding: 30px var(--pad) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--brown);
}

/* ---------- Full Face ---------- */
.fullface-intro {
  padding: 76px var(--pad) 30px;
}

.kicker {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.fullface {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 430;
}

.fullface img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 38%;
}

.ff-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 30%;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
}

.ff-line {
  flex-grow: 1;
  height: 1px;
  background: var(--taupe);
}

.ff-label.right {
  justify-content: flex-end;
}

.ff-olhos {
  top: 30%;
  left: 14px;
}

.ff-macas {
  top: 41%;
  right: 14px;
}

.ff-mandibula {
  top: 52%;
  left: 14px;
}

.ff-papada {
  top: 60%;
  right: 14px;
}

.ff-pescoco {
  top: 70%;
  left: 14px;
}

.fullface-copy {
  padding: 32px var(--pad) 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--brown);
  font-weight: 300;
}

/* ---------- Tecnologia ---------- */
.tech {
  margin-top: 76px;
  padding: 64px var(--pad);
  background: var(--ink);
  color: var(--cream);
}

.tech .kicker {
  color: var(--taupe);
}

.tech h2 {
  margin: 0 0 44px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 9.8vw, 38px);
  line-height: 1.06;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.tech-depths {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 6px 0 8px;
}

.tech-depths::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #d5bfb0 0%, #9c8274 40%, #593528 100%);
}

.depth {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-left: 3px;
}

.depth::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #593528;
  align-self: center;
  flex-shrink: 0;
}

.depth-n {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--cream);
  width: 58px;
  flex-shrink: 0;
}

.depth-l {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
}

.tech-unit {
  margin-top: 12px;
  text-align: right;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.tech-quote {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--blush);
}

/* ---------- Experiência ---------- */
.experience-intro {
  padding: 76px var(--pad) 32px;
}

.experience-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
}

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

.step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--blush);
}

.step-n {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--blush);
  width: 40px;
  flex-shrink: 0;
}

.step-t {
  font-size: 16px;
  font-weight: 400;
}

.step-note {
  padding: 22px 0 0;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--brown);
}

/* ---------- Prova ---------- */
.prova {
  margin-top: 72px;
  padding: 60px var(--pad);
  background: var(--sand);
}

.before-after {
  margin-bottom: 12px;
}

.ba-grid {
  display: flex;
  gap: 10px;
}

.ba-grid[hidden] {
  display: none;
}

.ba-combo {
  position: relative;
  overflow: hidden;
  background: #f3ece6;
}

.ba-combo[hidden] {
  display: none;
}

.ba-combo.has-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-tag {
  position: absolute;
  bottom: 10px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(33, 21, 17, 0.55);
  padding: 5px 9px;
}

.ba-tag-antes {
  left: 8px;
}

.ba-tag-depois {
  right: 8px;
}

.ba-slot {
  flex: 1;
  height: 200px;
  border: 1px dashed var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.ba-slot.has-photo {
  border-style: solid;
  padding: 0;
}

.ba-placeholder {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  text-align: center;
  line-height: 1.7;
}

.ba-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prova-note {
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--brown);
  margin-bottom: 40px;
}

.testimonial {
  border-top: 1px solid var(--blush);
  padding-top: 32px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.3;
  color: var(--ink);
}

.testimonial-text::before {
  content: "“";
}

.testimonial-text::after {
  content: "”";
}

.testimonial-author {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}

.rt {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--blush);
}

.rt-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--blush);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--deep);
  overflow: hidden;
}

.rt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-name {
  font-size: 15px;
  font-weight: 500;
}

.rt-creds {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-top: 4px;
}

/* ---------- Oferta ---------- */
.oferta {
  padding: 66px var(--pad) 60px;
  background: var(--ink);
  color: var(--cream);
}

.oferta-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.oferta-kicker {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.oferta-title {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.1;
  color: var(--cream);
  text-align: center;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 34px 20px;
  border: 1px solid var(--brown);
}

.price-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.price-card-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

.price-card-x {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--blush);
}

.price-card-n {
  font-family: var(--font-serif);
  font-size: clamp(52px, 16vw, 66px);
  line-height: 0.9;
  color: var(--cream);
  font-weight: 500;
}

.price-card-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-top: 8px;
}

.gift-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--brown);
  border-top: none;
}

.gift-card svg {
  flex-shrink: 0;
}

.gift-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--taupe);
}

.gift-text {
  font-size: 13px;
  line-height: 1.45;
}

.oferta-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oferta-cta .btn {
  height: 60px;
}

.oferta-note {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--taupe);
  text-align: center;
}

/* ---------- Urgência ---------- */
.urgencia {
  padding: 66px var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.urgencia-kicker {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.urgencia-date {
  font-family: var(--font-serif);
  font-size: clamp(64px, 21vw, 82px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.urgencia-when {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
}

.urgencia-rule {
  width: 44px;
  height: 1px;
  background: var(--blush);
}

.urgencia-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.urgencia-vagas {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--brown);
  font-weight: 300;
  max-width: 300px;
  margin: 0;
}

.urgencia-perda {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  max-width: 300px;
  margin: 0;
}

.urgencia-address {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--taupe);
  text-decoration: none;
}

.urgencia-address:hover {
  color: var(--brown);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 20px var(--pad) 0;
}

.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--blush);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--blush);
}

.faq-q {
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 5px;
}

.faq-a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--brown);
  font-weight: 300;
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  width: 100%;
  min-height: 460px;
  margin-top: 60px;
  background: var(--sand);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.cta-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 21, 17, 0.15) 0%,
    rgba(33, 21, 17, 0.85) 62%,
    rgba(33, 21, 17, 0.97) 100%
  );
}

.cta-final-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--pad) 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 10.2vw, 40px);
  line-height: 1.04;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.cta-final .btn {
  height: 60px;
}

/* ---------- Rodapé ---------- */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 44px var(--pad) calc(130px + env(safe-area-inset-bottom));
  background: var(--ink);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.26em;
  color: var(--cream);
}

.footer-tag {
  font-size: 7.5px;
  letter-spacing: 0.34em;
  color: var(--taupe);
  text-transform: uppercase;
}

.footer-address {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--blush);
  margin-top: 10px;
  text-decoration: none;
}

.footer-address:hover {
  color: var(--cream);
}

.footer-disclaimer {
  font-size: 10px;
  line-height: 1.6;
  color: var(--taupe);
  text-align: center;
  margin-top: 12px;
}

.footer-legal {
  font-size: 10px;
  color: var(--taupe);
}

/* ---------- Barra fixa ---------- */
.cta-bar {
  position: fixed;
  z-index: 50;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page);
  box-sizing: border-box;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: var(--cream);
  border-top: 1px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-bar-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.cta-bar-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.cta-bar-value {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1;
  color: var(--ink);
}

.cta-bar .btn-dark {
  flex: 1;
  min-width: 0;
  padding: 0 8px;
}

.wa-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  text-decoration: none;
}

.wa-icon:hover,
.wa-icon:focus-visible,
a.wa-icon:hover,
a.wa-icon:focus-visible {
  color: #fff;
  background: #20bd5a;
}

@media (min-width: 441px) {
  .hero h1 {
    font-size: 50px;
  }

  .page {
    box-shadow: 0 0 80px rgba(33, 21, 17, 0.1);
  }
}
