/* Landing — Alfaiataria | Paleta Artesanal Orgânico */

:root {
  --slate: #344955;
  --slate-soft: #4a6572;
  --slate-light: #e8eef1;
  --terracotta: #c75b39;
  --terracotta-hover: #bf573f;
  --terracotta-dark: #a34a2e;
  --creme: #fdfcf5;
  --creme-alt: #f5f1e6;
  --branco: #ffffff;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 10px;
  --shadow-soft: 0 12px 40px rgba(52, 73, 85, 0.08);
  --shadow-card: 0 8px 28px rgba(52, 73, 85, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
  background-color: var(--creme);
  -webkit-font-smoothing: antialiased;
}

body.has-sticky-cta {
  padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

.font-serif {
  font-family: var(--font-serif);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header */
.site-header {
  background: var(--creme);
  border-bottom: 1px solid rgba(52, 73, 85, 0.08);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--slate);
  text-decoration: none;
}

.logo:hover {
  color: var(--slate-soft);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--creme) 0%, var(--creme-alt) 100%);
}

.hero--guide {
  padding-bottom: 4rem;
}

.hero--guide .hero-copy {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero--guide .hero-copy .btn-large {
  margin-left: auto;
  margin-right: auto;
}

.hero--guide .hero-copy .cta-micro {
  text-align: center;
}

.hero-price {
  margin: 0 auto 1.65rem;
  max-width: 520px;
  padding: 1.15rem 1.35rem;
  background: rgba(52, 73, 85, 0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(52, 73, 85, 0.12);
  text-align: center;
}

.hero-price__line {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--slate);
}

.hero-price__label {
  font-weight: 600;
  display: inline;
}

.hero-price__value {
  color: var(--terracotta);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-price__note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate-soft);
  font-weight: 500;
}

.hero-price__note strong {
  color: var(--slate);
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--slate-soft);
  font-style: italic;
}

.cta-micro {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-soft);
  text-align: center;
}

@media (min-width: 640px) {
  .hero-copy .cta-micro {
    text-align: left;
  }
}

.hero-visual {
  width: 100%;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(52, 73, 85, 0.12);
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(199, 91, 57, 0.35);
}

.btn-primary:hover {
  background-color: var(--terracotta-hover);
  box-shadow: 0 6px 22px rgba(199, 91, 57, 0.42);
}

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

.btn-large {
  padding: 1.1rem 1.75rem;
  width: 100%;
  max-width: 420px;
}

/* Texto destacado (palavras-chave) */
.text-highlight {
  padding: 0.12em 0.28em;
  border-radius: 4px;
  background-color: rgba(199, 91, 57, 0.14);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* História e autoridade */
.autoridade {
  padding: 4.5rem 0;
  background: var(--slate);
  color: var(--creme-alt);
}

.autoridade__inner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-title--light {
  color: var(--creme-alt);
}

.autoridade .section-title {
  margin-bottom: 2rem;
}

.autoridade__text {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  text-align: left;
}

.autoridade__text:last-child {
  margin-bottom: 0;
}

.autoridade__text strong {
  color: var(--branco);
  font-weight: 700;
}

/* Para quem é o curso */
.publico {
  padding: 5rem 0;
  background: var(--branco);
  border-block: 1px solid rgba(52, 73, 85, 0.08);
}

.publico__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.publico__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--slate);
}

.publico__check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199, 91, 57, 0.12);
  color: var(--terracotta);
}

/* Benefícios */
.beneficios {
  padding: 5rem 0;
  background: var(--creme);
}

.section-title {
  margin: 0 0 2.75rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--slate);
  letter-spacing: -0.02em;
}

.beneficios__intro {
  margin: -1.5rem auto 2.5rem;
  max-width: 720px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate-soft);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(52, 73, 85, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card__icon {
  color: var(--slate-soft);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.card__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.3;
}

.card__text {
  margin: 0;
  font-size: 0.98rem;
  color: #3d5560;
  line-height: 1.62;
}

/* Oferta + CTA Hotmart */
.oferta {
  padding: 5rem 0;
  background: var(--creme-alt);
}

.oferta__inner {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.75rem 2rem;
  background: var(--branco);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--terracotta);
}

.oferta__title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  line-height: 1.3;
}

.oferta__lead {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--slate-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.oferta__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.oferta__cta .btn-pulse {
  width: 100%;
}

.oferta__cta .cta-micro {
  margin-top: 0;
}

.oferta__note {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-soft);
  line-height: 1.5;
}

.oferta__note a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.oferta__note a:hover {
  color: var(--terracotta-hover);
}

.btn-pulse {
  padding: 1.05rem 1.25rem;
  font-size: 0.88rem;
  animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(199, 91, 57, 0.35);
  }
  50% {
    box-shadow: 0 6px 28px rgba(199, 91, 57, 0.55);
  }
}

.btn-pulse:hover {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-pulse {
    animation: none;
  }

  .card:hover {
    transform: none;
  }
}

/* Valor ancorado */
.valor {
  padding: 3.5rem 0 4.5rem;
  background: var(--creme);
}

.valor__box {
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.5rem;
  background: var(--slate-light);
  border-radius: var(--radius);
  border: 1px solid rgba(52, 73, 85, 0.1);
}

.valor__heading {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.3;
}

.valor__why {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
}

.valor__why:last-of-type {
  margin-bottom: 1.5rem;
}

.valor__preco {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--slate);
  line-height: 1.5;
  text-align: center;
}

.valor__label {
  font-weight: 600;
}

.valor__riscado {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--slate-soft);
  margin-right: 0.35rem;
}

.valor__pipe {
  margin: 0 0.5rem;
  color: rgba(52, 73, 85, 0.35);
}

.valor__hoje {
  font-weight: 600;
}

.valor__hoje strong {
  color: var(--terracotta);
  font-weight: 700;
}

.valor__parcelas {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-soft);
  text-align: center;
}

/* Depoimentos */
.depoimentos {
  padding: 5rem 0;
  background: var(--creme-alt);
}

.depoimentos__disclaimer {
  margin: -1.25rem auto 2rem;
  max-width: 640px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--slate-soft);
  font-style: italic;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.depoimento {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(52, 73, 85, 0.06);
}

.depoimento__stars {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  line-height: 1;
}

.depoimento__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3d5560;
}

.depoimento__author {
  font-size: 0.9rem;
  color: var(--slate-soft);
  font-style: normal;
}

.depoimento__author cite {
  font-style: normal;
}

/* FAQ */
.faq {
  padding: 4.5rem 0 6rem;
  background: var(--creme);
}

.faq__list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq__item {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(52, 73, 85, 0.12);
  border-radius: var(--radius);
  background: var(--branco);
  overflow: hidden;
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__item[open] .faq__question {
  border-bottom: 1px solid rgba(52, 73, 85, 0.08);
}

.faq__answer {
  padding: 0 1.25rem 1.15rem;
}

.faq__answer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #3d5560;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

.faq__answer a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: var(--terracotta-hover);
}

/* Conteúdo editorial / SEO (híbrido blog + landing) */
.guia {
  padding: 4.25rem 0;
  background: var(--branco);
  border-block: 1px solid rgba(52, 73, 85, 0.08);
}

.guia--alt {
  background: var(--creme);
  border-block: none;
}

.guia__inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.guia .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.guia__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate-soft);
}

.guia h3 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.35;
}

.guia h3:first-of-type {
  margin-top: 1.35rem;
}

.guia p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--slate);
}

.guia ol,
.guia ul {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--slate);
  line-height: 1.65;
}

.guia li + li {
  margin-top: 0.45rem;
}

.guia a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guia a:hover {
  color: var(--terracotta-hover);
}

/* Botões dentro de .guia: .guia a tinha prioridade e deixava o texto terracota sobre fundo terracota */
.guia a.btn:not(.btn-banner-light),
.guia a.btn-primary {
  color: var(--branco);
  text-decoration: none;
}

.guia a.btn-primary:hover,
.guia a.btn:hover:not(.btn-banner-light) {
  color: var(--branco);
}

.cta-mid {
  margin: 2.25rem 0;
  padding: 1.75rem 1.5rem;
  background: rgba(199, 91, 57, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(199, 91, 57, 0.28);
  text-align: center;
}

.cta-mid p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--slate);
}

.cta-mid .btn-large {
  margin-left: auto;
  margin-right: auto;
}

.cta-mid .cta-micro {
  margin-top: 0.75rem;
}

/* Banner CTA sólido (Terracotta) — páginas guia */
.cta-banner-solid {
  margin: 2.5rem 0;
  padding: 2.35rem 1.5rem;
  background: var(--terracotta);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 32px rgba(199, 91, 57, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-banner-solid__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.cta-banner-solid__text {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.96);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-solid .btn-banner-light {
  background: var(--branco);
  color: var(--slate);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  text-decoration: none;
}

.cta-banner-solid .btn-banner-light:hover {
  background: var(--creme);
  color: var(--slate);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.cta-banner-solid .btn-banner-light:focus-visible {
  outline: 3px solid var(--branco);
  outline-offset: 3px;
}

.btn-cta-shout {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.86rem;
}

.cta-banner-solid .cta-micro {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.85rem;
}

.guia-callout {
  margin: 1.75rem 0 0;
  padding: 1.35rem 1.4rem;
  background: rgba(52, 73, 85, 0.07);
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
}

.transformacao {
  margin: 0 auto 2rem;
  max-width: 640px;
  padding: 1.25rem 1.35rem;
  background: rgba(52, 73, 85, 0.06);
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
}

.transformacao p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
}

.transformacao strong {
  color: var(--slate);
}

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, rgba(253, 252, 245, 0) 0%, var(--creme) 28%);
  background-color: rgba(253, 252, 245, 0.97);
  border-top: 1px solid rgba(52, 73, 85, 0.1);
  box-shadow: 0 -8px 32px rgba(52, 73, 85, 0.1);
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta[hidden] {
  display: none !important;
}

.sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.btn-sticky {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 0.82rem;
}

.sticky-cta__micro {
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Confiança */
.confianca {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--creme-alt) 0%, var(--creme) 100%);
}

.confianca__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.confianca__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--branco);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(52, 73, 85, 0.06);
}

.confianca__icon {
  flex-shrink: 0;
  color: var(--slate-soft);
}

.confianca__text {
  margin: 0;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--slate);
  color: rgba(253, 252, 245, 0.85);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
}

.footer__legal a {
  color: var(--creme-alt);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}

.footer__legal a:hover {
  color: var(--branco);
}

.footer__sep {
  opacity: 0.5;
}

/* Tablet+ */
@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-large {
    width: auto;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .confianca__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 900px) {
  .depoimentos__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
