/* =========================================================
   ChatGPT Ads para Profissionais da Beleza
   Folha de estilos principal
   Mobile first, variaveis de cor, sem frameworks
   ========================================================= */

:root {
  /* Paleta */
  --black-soft: #0D0B0C;
  --brown-dark: #1A1211;
  --brown-earth: #6B4A3E;
  --rose-burnt: #B87D6E;
  --beige-light: #E8D9CC;
  --off-white: #F6EFEA;
  --copper: #A9684B;
  --terracotta-bright: #C96F4E;
  --cream: #FFF9F5;
  --line-soft: rgba(107, 74, 62, 0.2);

  /* Tipografia */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Espacamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 2.75rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* =========================================================
   Reset basico
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--off-white);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* O wrapper <picture> (WebP com fallback em PNG) nao deve gerar caixa
   propria: assim as classes aplicadas ao <img> continuam controlando
   o layout exatamente como antes. */
picture {
  display: contents;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

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

/* Foco visivel para acessibilidade */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conteudo presente para leitores de tela, oculto visualmente.
   Usado quando a informacao ja aparece desenhada dentro da propria imagem. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Layout utilitario
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding: 4.5rem 0;
}

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

.section--beige {
  background-color: var(--beige-light);
}

.section--offer {
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 111, 78, 0.14), transparent 32%),
    var(--black-soft);
  color: var(--off-white);
}

.section--cta-final {
  text-align: center;
}

/* =========================================================
   Tipografia comum
   ========================================================= */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-sm);
}

.eyebrow--light {
  color: var(--rose-burnt);
}

.section-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.28;
  color: var(--brown-dark);
  margin-bottom: var(--space-md);
  max-width: 22ch;
}

.container--narrow .section-title {
  max-width: none;
}

.section-title--dark {
  color: var(--off-white);
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 1.05rem;
  color: var(--brown-dark);
  max-width: 640px;
}

.text-block--dark {
  color: var(--beige-light);
}

.text-block--center {
  margin: 0 auto;
  text-align: center;
}

.text-block .highlight {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--copper);
}

.text-block--dark .highlight {
  color: var(--rose-burnt);
}

/* =========================================================
   Botoes
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta-bright), #9B4F35);
  color: var(--off-white);
  box-shadow: 0 14px 34px rgba(155, 79, 53, 0.38);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B95E40, #7F3F2B);
  transform: translateY(-2px);
   box-shadow: 0 18px 40px rgba(155, 79, 53, 0.44);
}

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

.btn-primary:active {
  transform: translateY(0);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 111, 78, 0.2), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, var(--off-white) 58%, #E5CFC0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--terracotta-bright), var(--brown-earth));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.25rem, 8.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--brown-dark);
  letter-spacing: -0.035em;
  max-width: 15ch;
}

.hero__title span {
  color: var(--copper);
  font-style: italic;
  font-weight: 600;
}

.hero__text {
  font-size: 1.08rem;
  color: var(--brown-earth);
  max-width: 54ch;
  margin-top: 0.35rem;
}

.hero__product {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-top: var(--space-xs);
}

.hero__product--dark {
  color: var(--off-white);
}

.hero__price {
  font-size: 1.05rem;
  color: var(--brown-earth);
}

.hero__purchase {
  margin-top: 0.35rem;
}

.hero__numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  list-style: none;
  margin: 0.65rem 0 0.35rem;
  max-width: 570px;
}

.hero__numbers li {
  min-height: 88px;
  padding: 0.9rem 0.7rem;
  border: 1px solid rgba(107, 74, 62, 0.16);
  border-radius: 14px;
  background: rgba(255, 249, 245, 0.7);
  box-shadow: 0 10px 28px rgba(26, 18, 17, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__numbers strong {
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--copper);
}

.hero__numbers span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: var(--brown-earth);
}

.hero__price--dark {
  color: var(--beige-light);
}

.hero__price strong {
  color: var(--copper);
  font-size: 1.3rem;
}

.hero .btn-primary {
  margin-top: var(--space-sm);
  align-self: flex-start;
  width: 100%;
  max-width: 520px;
  padding-inline: 1.2rem;
  font-size: 0.78rem;
}

.hero__note {
  font-size: 0.9rem;
  color: var(--brown-earth);
  margin-top: var(--space-xs);
}

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__stage {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  isolation: isolate;
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 8% 1% 2% 12%;
  border-radius: 46% 46% 24px 24px;
  background: linear-gradient(155deg, var(--rose-burnt), var(--brown-earth));
  box-shadow: 0 30px 70px rgba(26, 18, 17, 0.2);
  z-index: -2;
}

.hero__stage::after {
  content: "";
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  top: 0;
  right: -2%;
  border: 1px solid rgba(169, 104, 75, 0.38);
  border-radius: 50%;
  z-index: -3;
}

.hero__portrait {
  position: absolute;
  z-index: -1;
  right: 1%;
  bottom: 2%;
  width: 86%;
  height: 91%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 46% 46% 24px 24px;
  filter: saturate(0.9) contrast(1.02);
}

.hero__credential {
  position: absolute;
  z-index: 5;
  top: 6%;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 249, 245, 0.94);
  color: var(--brown-earth);
  font-size: 0.72rem;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(26, 18, 17, 0.18);
}

.hero__credential strong {
  font-family: var(--font-title);
  color: var(--brown-dark);
  font-size: 1.15rem;
}

.mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1.15;
}

.hero__stage .mockup {
  position: absolute;
  z-index: 4;
  left: -1%;
  bottom: -2%;
  width: 56%;
  max-width: none;
}

/* Ajustes editoriais do mockup: mais respiro entre as duas capas. */
.hero__stage .mockup__back {
  left: -16%;
  top: -2%;
}

.hero__stage .mockup__front {
  bottom: -8%;
}

/* =========================================================
   Autoridade e demonstracao
   ========================================================= */

.authority-strip {
  background: var(--brown-dark);
  color: var(--off-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.authority-strip p {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.authority-strip p:last-child {
  border-bottom: 0;
}

.authority-strip strong {
  font-family: var(--font-title);
  color: var(--rose-burnt);
  font-size: 1.15rem;
}

.authority-strip span {
  font-size: 0.78rem;
  color: var(--beige-light);
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.section--demo {
  background:
    linear-gradient(rgba(107, 74, 62, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 74, 62, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}

.demo-heading {
  display: grid;
  gap: var(--space-sm);
  align-items: end;
  margin-bottom: var(--space-lg);
}

.demo-heading .section-title {
  margin-bottom: 0;
}

.demo-heading__text {
  color: var(--brown-earth);
  max-width: 54ch;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.comparison-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 45px rgba(26, 18, 17, 0.1);
}

.comparison-card--generic {
  opacity: 0.78;
}

.comparison-card--strategic {
  border: 2px solid var(--terracotta-bright);
  box-shadow: 0 22px 55px rgba(169, 104, 75, 0.22);
}

.comparison-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.75rem;
  margin-bottom: var(--space-sm);
  border-radius: 999px;
  background: rgba(107, 74, 62, 0.1);
  color: var(--brown-earth);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.comparison-card--strategic .comparison-card__label {
  background: var(--terracotta-bright);
  color: var(--cream);
}

.chat-bubble {
  width: fit-content;
  max-width: 92%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 15px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.chat-bubble--prompt {
  margin-left: auto;
  background: var(--brown-dark);
  color: var(--off-white);
  border-bottom-right-radius: 4px;
}

.chat-bubble--answer {
  background: var(--off-white);
  color: var(--brown-earth);
  border: 1px solid rgba(107, 74, 62, 0.13);
  border-bottom-left-radius: 4px;
}

.chat-bubble--answer strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brown-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-card__verdict {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(107, 74, 62, 0.14);
  color: var(--brown-earth);
  font-family: var(--font-title);
  font-size: 1.03rem;
  font-style: italic;
}

.comparison-card--strategic .comparison-card__verdict {
  color: var(--copper);
  font-weight: 600;
}

.demo-conclusion {
  margin: var(--space-lg) auto 0;
  padding: 1.4rem;
  max-width: 820px;
  border-radius: 18px;
  background: var(--brown-dark);
  color: var(--beige-light);
  text-align: center;
}

.demo-conclusion strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--rose-burnt);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.section-intro {
  max-width: 62ch;
  margin-bottom: var(--space-lg);
  color: var(--brown-earth);
  font-size: 1.08rem;
}

.section-intro--dark {
  color: var(--beige-light);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.strategy-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(232, 217, 204, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.strategy-grid span {
  color: var(--terracotta-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.strategy-grid h3 {
  margin: 0.45rem 0;
  color: var(--off-white);
  font-family: var(--font-title);
  font-size: 1.3rem;
}

.strategy-grid p {
  color: var(--beige-light);
  font-size: 0.93rem;
}

.strategy-closing {
  max-width: 820px;
  margin-top: var(--space-lg);
  color: var(--beige-light);
  font-size: 1.05rem;
}

.strategy-closing strong {
  color: var(--rose-burnt);
  font-family: var(--font-title);
  font-size: 1.15rem;
}

.mockup__back,
.mockup__mid,
.mockup__front {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 45px rgba(26, 18, 17, 0.28);
}

.mockup__back {
  width: 62%;
  top: 0;
  left: 0;
  transform: rotate(-9deg);
  z-index: 1;
}

.mockup__mid {
  width: 62%;
  top: 6%;
  right: 0;
  transform: rotate(7deg);
  z-index: 2;
}

.mockup__front {
  width: 78%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: var(--radius-lg);
}

/* =========================================================
   Citacoes / pistas
   ========================================================= */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  list-style: none;
}

.quote-card {
  background-color: var(--off-white);
  border: 1px solid rgba(107, 74, 62, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-dark);
  position: relative;
}

.quote-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--copper);
  margin-bottom: var(--space-sm);
  border-radius: 2px;
}

/* =========================================================
   Metodo
   ========================================================= */

.method-banner {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  border-left: 2px solid rgba(184, 125, 110, 0.4);
  margin-bottom: var(--space-lg);
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.method-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--rose-burnt);
  color: var(--brown-dark);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  margin-left: calc(var(--space-md) * -1 - 1px);
}

.method-text {
  font-size: 1.05rem;
  color: var(--beige-light);
  padding-top: 0.4rem;
}

/* =========================================================
   Modulos
   ========================================================= */

.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.module-clarifier {
  max-width: 820px;
  margin: -0.75rem 0 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--terracotta-bright);
  background: rgba(255, 249, 245, 0.62);
  color: var(--brown-earth);
  font-size: 1rem;
  line-height: 1.6;
}

.module-clarifier strong {
  color: var(--brown-dark);
}

.module-card {
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(26, 18, 17, 0.1);
  display: flex;
  flex-direction: column;
}

/* Cabecalho compacto em HTML: evita o vazio das antigas capas verticais
   e mantem os cinco cards consistentes em qualquer largura. */
.module-card__cover {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  padding: 1.65rem 1.75rem 1.45rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--cream);
}

.module-card__cover::before,
.module-card__cover::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.11;
}

.module-card__cover::before {
  width: 180px;
  height: 180px;
  top: -88px;
  right: -60px;
}

.module-card__cover::after {
  width: 84px;
  height: 84px;
  bottom: -47px;
  left: -28px;
}

.module-card__cover--one {
  background: #A8614D;
}

.module-card__cover--two {
  background: #E3D0C1;
  color: #432D28;
}

.module-card__cover--three {
  background: #6B4A3E;
}

.module-card__cover--four {
  background: #B77E70;
}

.module-card__cover--five {
  background: #1A1211;
}

.module-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.module-card__icon {
  width: 66px;
  height: 66px;
  margin: 2.05rem 0 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card__cover-title {
  max-width: 290px;
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.08;
  font-weight: 600;
}

.module-card__cover-text {
  max-width: 300px;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.9;
}

.module-card__brand {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-card__brand b {
  padding: 0 0.35rem;
}

/* Rodape visivel do card: selo de liberacao, titulo completo do modulo
   e descricao complementar (texto aprovado, nao redesenhado). */
.module-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.module-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.module-badge--now {
  background-color: rgba(169, 104, 75, 0.15);
  color: var(--copper);
}

.module-badge--later {
  background-color: rgba(107, 74, 62, 0.14);
  color: var(--brown-earth);
}

.module-card__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.3;
}

.module-card__text {
  font-size: 0.98rem;
  color: var(--brown-earth);
}

/* =========================================================
   Publico
   ========================================================= */

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.audience-list li {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--brown-dark);
  padding-left: var(--space-md);
  position: relative;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--rose-burnt);
}

.audience-closing {
  font-size: 1.05rem;
  color: var(--brown-earth);
  max-width: 50ch;
}

/* =========================================================
   Autora
   ========================================================= */

.autora__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.autora__photo img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(26, 18, 17, 0.18);
}

/* =========================================================
   Oferta
   ========================================================= */

.offer-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(232, 217, 204, 0.18);
  border-radius: 28px;
  background: rgba(26, 18, 17, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.offer-card__visual {
  position: relative;
  min-height: 500px;
  padding: 4.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 249, 245, 0.18), transparent 24%),
    linear-gradient(145deg, var(--terracotta-bright), var(--brown-earth));
  overflow: hidden;
}

.offer-card__visual::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -24%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.offer-card__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.offer-card__visual > p {
  position: relative;
  z-index: 5;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 32ch;
  margin: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.45;
}

.offer-mockup {
  position: relative;
  inset: auto;
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
}

.offer-mockup img {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(26, 18, 17, 0.35);
}

.offer-mockup__back {
  width: 38%;
  left: 8%;
  top: 3%;
  transform: rotate(-10deg);
}

.offer-mockup__mid {
  width: 38%;
  right: 8%;
  top: 6%;
  transform: rotate(9deg);
}

.offer-mockup__front {
  z-index: 2;
  width: 54%;
  left: 23%;
  top: 18%;
  border-radius: 20px !important;
}

.offer-card__content {
  padding: 1.6rem 1.25rem;
}

.offer-card__content .section-title {
  max-width: 17ch;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
   gap: 0.8rem;
  margin: 0 0 var(--space-md);
  max-width: 560px;
  text-align: left;
}

.offer-list li {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--beige-light);
  padding-left: var(--space-md);
  position: relative;
}

.offer-list li strong {
  color: var(--off-white);
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.offer-list li span {
  color: rgba(232, 217, 204, 0.78);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--terracotta-bright);
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--space-md) 0;
}

.offer-price strong {
  color: var(--off-white);
  font-family: var(--font-title);
  font-size: clamp(4rem, 16vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.offer-price small {
  color: var(--rose-burnt);
  font-size: 0.38em;
  letter-spacing: 0;
}

.offer-price > span {
  margin-bottom: 0.35rem;
  color: var(--beige-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.offer-trust span {
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(232, 217, 204, 0.18);
  border-radius: 999px;
  color: var(--beige-light);
  font-size: 0.7rem;
  font-weight: 700;
}

.offer-trust--center {
  justify-content: center;
}

/* =========================================================
   Oferta intermediária (bloco compacto de meio de página)
   ========================================================= */

.mini-offer {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.mini-offer .section-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.mini-offer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}

.mini-offer__list li {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(232, 217, 204, 0.25);
  border-radius: 999px;
  color: var(--beige-light);
  font-size: 0.8rem;
  font-weight: 600;
}

.mini-offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.mini-offer__price > span {
  color: var(--beige-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-offer__price strong {
  font-family: var(--font-title);
  font-size: 2.75rem;
  color: var(--off-white);
  line-height: 1;
}

.mini-offer__price strong small {
  font-size: 0.42em;
  color: var(--rose-burnt);
}

.mini-offer .offer-trust {
  margin-top: var(--space-lg);
}

.offer-card__note {
  margin-top: 0.75rem;
  color: rgba(232, 217, 204, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--off-white);
  border: 1px solid rgba(107, 74, 62, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.faq-question {
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brown-dark);
  list-style: none;
  padding: 0.5rem 2rem 0.5rem 0;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.4rem;
  font-size: 1.4rem;
  color: var(--copper);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-top: var(--space-xs);
  color: var(--brown-earth);
  font-size: 0.98rem;
  max-width: 65ch;
}

/* =========================================================
   Rodape
   ========================================================= */

.footer {
  background-color: var(--black-soft);
  color: var(--beige-light);
  padding: var(--space-lg) 0 calc(var(--space-lg) + 70px);
  text-align: center;
  font-size: 0.85rem;
}

.footer p {
  margin-bottom: var(--space-xs);
  opacity: 0.85;
}

.footer__monogram {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--rose-burnt);
  letter-spacing: 0.08em;
  opacity: 1;
  margin-bottom: var(--space-sm);
}

/* =========================================================
   Botao fixo mobile
   ========================================================= */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
  background-color: rgba(246, 239, 234, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(107, 74, 62, 0.18);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.btn-mobile {
  width: 100%;
  min-height: 48px;
}

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

/* =========================================================
   Breakpoint tablet / desktop
   ========================================================= */

@media (min-width: 740px) {
  body {
    font-size: 16.5px;
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .hero__title {
    font-size: 2.7rem;
  }

  .hero__text {
    font-size: 1.15rem;
  }

  .hero .btn-primary {
    padding-inline: 2rem;
    font-size: 0.9rem;
  }

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

  .authority-strip p {
    padding: 1.4rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .authority-strip p:first-child {
    padding-left: 0;
  }

  .authority-strip p:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .demo-heading {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
  }

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

  .comparison-card {
    padding: 1.6rem;
  }

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

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

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

  .module-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - var(--space-md)) / 2);
    justify-self: center;
  }

  .autora__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-2xl);
  }

  .method-list {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    gap: var(--space-lg) var(--space-md);
  }

  .method-item {
    flex: 1 1 30%;
  }

  .method-number {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: var(--space-2xl);
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__title {
    font-size: clamp(3.15rem, 4.25vw, 4.35rem);
  }

  .hero__stage {
    width: 520px;
  }

  .offer-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .offer-card__visual {
    min-height: 680px;
  }

  .offer-card__content {
    padding: 2.65rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .module-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .module-card {
    grid-column: span 2;
  }

  .module-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .module-card:nth-child(5) {
    grid-column: 4 / span 2;
    width: auto;
  }

  .section-title {
    font-size: 2.6rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 2rem;
  }

  .hero__title {
    font-size: 4.35rem;
  }

  .section-title {
    font-size: 2.9rem;
  }
}
