/* ==========================================================================
   PRESENÇA — Landing page comercial
   Tokens, base, layout e componentes
   ========================================================================== */

/* ---------- Fontes (progressive enhancement — o site funciona sem CDN) --- */
@font-face {
  font-family: "Fraunces";
  src: local("Fraunces");
  font-display: swap;
}

/* ---------- Tokens --------------------------------------------------- */
:root {
  /* Paleta: atelier botânico — verde-mata profundo + porcelana + dourado envelhecido */
  --ink: #16241B;
  --forest: #24402D;
  --forest-light: #35563F;
  --forest-pale: #E8EEE7;
  --porcelain: #F7F3EA;
  --porcelain-dim: #EFE9DB;
  --white: #FFFEFB;
  --gold: #B99356;
  --gold-soft: #E3D2AC;
  --clay: #8C5A44;
  --line: rgba(22, 36, 27, 0.12);
  --line-soft: rgba(22, 36, 27, 0.07);
  --shadow-color: 22, 36, 27;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
section { position: relative; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Layout utilitário ------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .wrap { padding: 0 40px; }
}

.section-pad { padding: 96px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(22,36,27,0.68);
  max-width: 52ch;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Botões ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(var(--shadow-color), .12);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(var(--shadow-color), .45); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--forest); background: var(--forest-pale); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #a9834a; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(185,147,86,.6); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(247, 243, 234, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .brand-dot { color: var(--gold); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(22,36,27,0.75);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-desktop a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 22px; font-size: 14.5px; }

.nav-toggle {
  display: flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 1.6px;
  background: var(--ink);
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--porcelain);
  z-index: 400;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s var(--ease), opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
}
.mobile-menu .btn { margin-top: 24px; }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 160px 0 110px;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(185,147,86,0.16), transparent 70%),
    var(--porcelain);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr 0.95fr; gap: 40px; }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--forest);
}
.hero-copy .lede {
  margin-top: 24px;
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(22,36,27,0.72);
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-meta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(22,36,27,0.6);
  font-weight: 500;
}
.hero-meta svg { width: 16px; height: 16px; color: var(--forest); flex-shrink: 0; }

/* --- signature visual: ponte entre Instagram e Site --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.bridge-scene {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.phone-mock {
  position: relative;
  width: 168px;
  margin-left: 4px;
  border-radius: 30px;
  background: var(--ink);
  padding: 8px;
  box-shadow: 0 30px 60px -24px rgba(var(--shadow-color), .45);
  transform: rotate(-6deg);
  animation: float-a 7s var(--ease) infinite;
}
.phone-mock .screen {
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
}
.phone-mock .ig-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 10px 8px;
  font-size: 9px; font-weight: 700; color: var(--ink);
}
.phone-mock .ig-bar .ig-avatar { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--clay)); }
.phone-mock .ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.phone-mock .ig-grid div { aspect-ratio: 1; background: var(--forest-pale); }
.phone-mock .ig-grid div:nth-child(1) { background: var(--gold-soft); }
.phone-mock .ig-grid div:nth-child(4) { background: #cfd9cf; }
.phone-mock .ig-grid div:nth-child(6) { background: var(--gold-soft); }
.phone-mock .ig-grid div:nth-child(8) { background: #cfd9cf; }

.browser-mock {
  position: absolute;
  right: -6px;
  bottom: -22px;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 70px -20px rgba(var(--shadow-color), .5);
  border: 1px solid var(--line);
  animation: float-b 8s var(--ease) infinite;
}
.browser-mock .bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  background: var(--porcelain-dim);
  border-bottom: 1px solid var(--line);
}
.browser-mock .bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.browser-mock .bar .url { margin-left: 8px; height: 14px; flex: 1; border-radius: 4px; background: rgba(22,36,27,.08); }
.browser-mock .page { padding: 16px; }
.browser-mock .page .hline { height: 8px; border-radius: 3px; background: var(--forest-pale); }
.browser-mock .page .hline.w60 { width: 60%; margin-bottom: 8px; }
.browser-mock .page .hline.w40 { width: 40%; background: var(--gold-soft); margin-bottom: 16px; }
.browser-mock .page .row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.browser-mock .page .row div { aspect-ratio: 1; border-radius: 8px; background: var(--porcelain-dim); }
.browser-mock .page .cta-line { height: 26px; width: 46%; border-radius: 999px; background: var(--forest); }

.bridge-dots {
  position: absolute;
  left: 128px;
  top: 96px;
  width: 130px;
  height: 130px;
  z-index: -1;
}

@keyframes float-a {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.mock-note {
  position: absolute;
  bottom: -34px;
  left: 0;
  font-size: 12px;
  color: rgba(22,36,27,0.45);
  font-style: italic;
}

@media (max-width: 999px) {
  .hero { padding-top: 128px; }
  .hero-visual { min-height: 340px; margin-top: 12px; }
  .bridge-scene { max-width: 340px; }
  .phone-mock { width: 130px; }
  .browser-mock { width: 220px; bottom: -10px; }
}

/* ==========================================================================
   MARQUEE / segmentos atendidos
   ========================================================================== */
.segments {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  padding: 22px 0;
}
.segments-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
  width: max-content;
}
.segments-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(22,36,27,0.42);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.segments-track span::after {
  content: "•";
  color: var(--gold);
  font-style: normal;
  margin-left: 48px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   PROBLEMA — Instagram x Site
   ========================================================================== */
.problem { background: var(--porcelain); }
.problem-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 780px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.problem-card p {
  color: rgba(22,36,27,0.68);
  font-size: 15.5px;
}
.problem-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.problem-card li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(22,36,27,0.75);
}
.problem-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--forest); }
.problem-card.accent { background: var(--forest); color: var(--white); }
.problem-card.accent h3 { color: var(--white); }
.problem-card.accent p { color: rgba(255,255,255,0.78); }
.problem-card.accent li { color: rgba(255,255,255,0.88); }
.problem-card.accent li svg { color: var(--gold-soft); }

.problem-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
}

/* ==========================================================================
   O QUE VOCÊ RECEBE — grid de recursos
   ========================================================================== */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-item {
  background: var(--white);
  padding: 34px 28px;
  transition: background .25s var(--ease);
}
.feature-item:hover { background: var(--forest-pale); }
.feature-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--forest-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--forest);
}
.feature-item:hover .icon { background: var(--white); }
.feature-item .icon svg { width: 20px; height: 20px; }
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}
.feature-item p { font-size: 14px; color: rgba(22,36,27,0.62); }

/* ==========================================================================
   NA PRÁTICA — demonstração de mockup
   ========================================================================== */
.showcase { background: var(--porcelain); }
.showcase-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 50px 90px -40px rgba(var(--shadow-color), .35);
}
.showcase-frame .bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--porcelain-dim);
  border-bottom: 1px solid var(--line);
}
.showcase-frame .bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(22,36,27,.15); }
.showcase-frame .bar .url {
  margin-left: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  color: rgba(22,36,27,.5);
  border: 1px solid var(--line);
}
.showcase-body {
  display: grid;
  gap: 0;
}
@media (min-width: 860px) {
  .showcase-body { grid-template-columns: 1.1fr 0.9fr; }
}
.showcase-hero {
  padding: 56px 40px;
  background: linear-gradient(160deg, var(--forest), var(--ink));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-hero .tag { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.showcase-hero h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 500; line-height: 1.2; }
.showcase-hero p { margin-top: 14px; color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 34ch; }
.showcase-hero .mini-cta { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 13.5px; font-weight: 600; width: fit-content; }
.showcase-gallery {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--porcelain);
}
.showcase-gallery .g { border-radius: 10px; background: var(--forest-pale); aspect-ratio: 1; position: relative; overflow: hidden; }
.showcase-gallery .g::after { content: attr(data-label); position: absolute; bottom: 8px; left: 10px; font-size: 10.5px; color: rgba(22,36,27,.5); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.showcase-gallery .g:nth-child(1) { background: var(--gold-soft); }
.showcase-gallery .g:nth-child(4) { background: #dfe6df; }

.showcase-example-tag {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(22,36,27,0.45);
  font-style: italic;
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 720px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
  padding: 32px 6px;
  border-top: 1px solid var(--line);
}
.benefit-card .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  display: block;
}
.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 14.5px; color: rgba(22,36,27,0.65); }

/* ==========================================================================
   PRICING / O QUE ESTÁ INCLUSO
   ========================================================================== */
.pricing { background: var(--ink); color: var(--white); }
.pricing .eyebrow { color: var(--gold-soft); }
.pricing .section-title { color: var(--white); }
.pricing .section-sub { color: rgba(255,255,255,0.65); }

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.plan-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.plan-head h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.plan-price { text-align: right; }
.plan-price .value { font-family: var(--font-display); font-size: 40px; color: var(--gold-soft); }
.plan-price .cond { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

.plan-list {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .plan-list { grid-template-columns: 1fr 1fr; gap: 14px 28px; }
}
.plan-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.plan-list li svg { width: 17px; height: 17px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }

.plan-card .btn-gold { margin-top: 32px; }

/* --- pagamento --- */
.payment-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .payment-grid { grid-template-columns: 1fr 1fr; }
}
.payment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 30px;
}
.payment-card .tag {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: block;
}
.payment-card .amount { font-family: var(--font-display); font-size: 30px; margin-bottom: 6px; }
.payment-card .desc { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* ==========================================================================
   HOSPEDAGEM
   ========================================================================== */
.hosting { background: var(--porcelain); }
.hosting-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 780px) {
  .hosting-grid { grid-template-columns: 1fr 1fr; }
}
.hosting-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.hosting-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.hosting-card p { font-size: 14.5px; color: rgba(22,36,27,0.65); }

.hosting-explain {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
@media (min-width: 720px) {
  .hosting-explain { grid-template-columns: 1fr 1fr; }
}
.hosting-explain dt {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 500;
  margin-bottom: 6px;
}
.hosting-explain dd { margin: 0; font-size: 14px; color: rgba(22,36,27,0.65); }

.hosting-plan {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.hosting-plan .price { font-family: var(--font-display); font-size: 30px; }
.hosting-plan .price span { font-size: 14px; opacity: .7; font-family: var(--font-body); }

/* ==========================================================================
   COMPARATIVO Instagram x Site
   ========================================================================== */
.compare { background: var(--white); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  background: var(--porcelain-dim);
}
.compare-table thead th:last-child { background: var(--forest); color: var(--white); }
.compare-table tbody td:first-child { color: rgba(22,36,27,0.6); }
.compare-table tbody td:last-child { font-weight: 600; background: var(--forest-pale); }
.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(22,36,27,0.55);
  max-width: 60ch;
}

/* generic objection sections */
.objection { background: var(--porcelain); }
.objection-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .objection-inner { grid-template-columns: 0.9fr 1.1fr; }
}
.objection-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--forest);
}
.objection-a p { font-size: 16px; color: rgba(22,36,27,0.72); margin-bottom: 14px; }
.objection-a p:last-child { margin-bottom: 0; }
.objection-a strong { color: var(--ink); }

.objection.alt { background: var(--white); }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.process { background: var(--porcelain); }
.process-grid {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 780px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.process-step {
  position: relative;
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.process-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: rgba(22,36,27,0.65); }
.process-connector {
  display: none;
}
@media (min-width: 780px) {
  .process-grid { position: relative; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--white); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--forest);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .plus::before { width: 11px; height: 1.4px; }
.faq-q .plus::after { width: 1.4px; height: 11px; }
.faq-item[aria-expanded="true"] .plus::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-a p {
  padding: 0 4px 24px;
  font-size: 15px;
  color: rgba(22,36,27,0.66);
  max-width: 62ch;
}
.faq-item[aria-expanded="true"] .faq-a { max-height: 220px; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--forest), var(--ink));
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(185,147,86,0.22), transparent 70%);
}
.final-cta .wrap { position: relative; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.16;
  max-width: 16ch;
  margin: 0 auto;
}
.final-cta p {
  margin: 22px auto 0;
  max-width: 52ch;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
}
.final-cta .hero-ctas { justify-content: center; margin-top: 38px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 56px 0 32px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 12px; max-width: 32ch; font-size: 14px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.35);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   BADGES / EXAMPLE TAG
   ========================================================================== */
.example-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  width: fit-content;
}

@media (max-width: 640px) {
  .plan-price { text-align: left; }
  .plan-head { flex-direction: column; align-items: flex-start; }
}
