/* ============================================================
   OfertasClaro — folha de estilo
   Tema claro e leve • acentos vermelho Claro + rosados suaves
   ============================================================ */

:root {
  --red: #e3001b;          /* primário */
  --red-deep: #b00015;     /* texto vermelho legível sobre claro */
  --red-tint: #fff0f1;     /* superfície rosada suave */
  --red-tint-2: #ffe1e4;   /* borda rosada */
  --bg: #fcfbfa;           /* fundo da página */
  --surface: #ffffff;      /* cartões */
  --ink: #1b1c22;          /* texto principal (independe do fundo) */
  --muted: #6b7180;        /* texto secundário */
  --line: #ececef;         /* bordas */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(28, 28, 40, 0.05);
  --shadow: 0 18px 40px -22px rgba(28, 28, 40, 0.22);
  --wrap: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: "Manrope", sans-serif; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; color: var(--ink); }
img { max-width: 100%; }

/* ===== Botões ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 700; font-size: .98rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-fill { background: var(--red); color: #fff; box-shadow: 0 10px 22px -12px rgba(227,0,27,.7); }
.btn-fill:hover { background: var(--red-deep); transform: translateY(-2px); }

.btn-soft { background: var(--red-tint); color: var(--red-deep); border-color: var(--red-tint-2); }
.btn-soft:hover { background: var(--red-tint-2); }

.btn-line { background: var(--surface); color: var(--red-deep); border-color: var(--red-tint-2); }
.btn-line:hover { border-color: var(--red); background: var(--red-tint); }

.btn-white { background: #fff; color: var(--red-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(0,0,0,.4); }

/* ===== Topbar ===== */
.topbar { background: var(--red); color: #fff; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar-inner span { opacity: .95; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(252,251,250,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.logo b { color: var(--red); font-weight: 800; }
.logo-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-tint); }
.links { display: flex; gap: 28px; }
.links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.links a:hover { color: var(--red); }

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 80px 0 70px;
  background:
    radial-gradient(700px 360px at 50% -40px, var(--red-tint), transparent 70%);
}
.hero-wrap { max-width: 820px; }
.pill {
  display: inline-block; font-family: "Manrope", sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--red-deep); background: var(--red-tint);
  border: 1px solid var(--red-tint-2);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); }
.hero h1 .accent { color: var(--red); }
.lead { color: var(--muted); font-size: 1.16rem; margin: 20px auto 32px; max-width: 38em; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap;
  margin-top: 50px; padding: 22px 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: "Manrope", sans-serif; font-size: 1.4rem; color: var(--ink); }
.trust-item span { font-size: .82rem; color: var(--muted); }
.trust-sep { width: 1px; height: 34px; background: var(--line); }

/* ===== Cabeçalhos de seção ===== */
.head-center { text-align: center; max-width: 600px; margin: 0 auto 46px; }
.kicker {
  display: inline-block; font-family: "Manrope", sans-serif;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); margin-bottom: 10px;
}
.head-center h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.head-center .sub { color: var(--muted); margin-top: 12px; }

/* ===== Como funciona ===== */
.steps { padding: 84px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--red-tint); color: var(--red-deep);
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===== Planos ===== */
.plans { padding: 84px 0; background: var(--red-tint); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red-tint-2); }
.card-top { border-color: var(--red); box-shadow: 0 20px 46px -22px rgba(227,0,27,.45); }
.card-max { border-color: #d9dbe2; }
.card-top, .card-max { padding-top: 48px; }   /* espaço para o selo no topo */

.badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.badge-soft { background: #3a3d49; }

.card-name { font-size: 1.22rem; }
.card-for { color: var(--muted); font-size: .92rem; margin: 4px 0 16px; min-height: 2.4em; }
.card-speed {
  font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: 2.6rem; color: var(--red); line-height: 1;
}
.card-speed span { font-size: 1rem; color: var(--muted); font-weight: 600; margin-left: 4px; }
.card-price { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.7rem; margin: 14px 0 18px; }
.card-price i { font-style: normal; font-size: 1rem; color: var(--muted); font-weight: 600; }
.card-price span { font-size: .92rem; color: var(--muted); font-weight: 500; }
.card-list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; flex: 1; }
.card-list li { position: relative; padding-left: 26px; font-size: .95rem; }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red-tint); border: 2px solid var(--red);
}

/* ===== Vantagens ===== */
.perks { padding: 84px 0; }
.perks-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.perks-text { position: sticky; top: 100px; }
.perks-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 10px 0 14px; }
.perks-text p { color: var(--muted); }
.perks-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.perk {
  display: flex; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px;
}
.perk-ic {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-tint); font-size: 1.4rem;
}
.perk h4 { font-size: 1.02rem; margin-bottom: 4px; }
.perk p { color: var(--muted); font-size: .9rem; }

/* ===== Comparativo (grid) ===== */
.compare { padding: 84px 0; background: var(--red-tint); }
.grid-compare {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gc-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; align-items: center; }
.gc-row > span { padding: 16px 20px; font-size: .95rem; }
.gc-row + .gc-row { border-top: 1px solid var(--line); }
.gc-head { background: var(--ink); }
.gc-head > span { color: #fff; font-family: "Manrope", sans-serif; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.gc-row:not(.gc-head) > span:first-child { font-weight: 600; }
.gc-row:not(.gc-head) > span:last-child { font-family: "Manrope", sans-serif; font-weight: 800; color: var(--ink); }
.gc-mark { background: var(--red-tint); }

/* ===== Callout ===== */
.callout { padding: 80px 0; }
.callout-box {
  text-align: center;
  background: linear-gradient(135deg, var(--red), #ff3a4e);
  border-radius: 24px; padding: 56px 30px; color: #fff;
  box-shadow: 0 26px 50px -26px rgba(227,0,27,.6);
}
.callout-box h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.callout-box p { color: rgba(255,255,255,.92); margin: 12px 0 26px; }

/* ===== FAQ ===== */
.faq { padding: 84px 0; }
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.qa {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px;
}
.qa h4 { font-size: 1.06rem; margin-bottom: 8px; }
.qa h4::before { content: "?"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 6px; background: var(--red-tint); color: var(--red-deep); font-size: .85rem; vertical-align: middle; }
.qa p { color: var(--muted); font-size: .95rem; }

/* ===== Footer ===== */
.foot { background: var(--ink); color: #cfd2db; padding-top: 56px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.logo-light { color: #fff; }
.logo-light b { color: #ff6273; }
.foot-brand p { color: #9a9eaa; margin-top: 14px; max-width: 32em; font-size: .94rem; }
.foot-col h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.foot-col a, .foot-tag { display: block; color: #cfd2db; font-size: .94rem; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: #ff6273; }
.foot-tag { color: #9a9eaa; }

.foot-bar { border-top: 1px solid #2c2e38; padding: 20px 0; }
.foot-bar-in { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot-bar-in p { color: #9a9eaa; font-size: .86rem; }
.foot-legal { display: flex; align-items: center; gap: 10px; }
.foot-legal a { color: #cfd2db; transition: color .2s; }
.foot-legal a:hover { color: #ff6273; text-decoration: underline; }
.foot-legal span { color: #5a5d68; }

/* ===== Páginas legais ===== */
.legal { padding: 56px 0 80px; }
.legal .wrap { max-width: 800px; }
.legal-top { padding: 36px 0; border-bottom: 1px solid var(--line); margin-bottom: 38px; }
.legal-back { color: var(--muted); font-size: .92rem; }
.legal-back:hover { color: var(--red); }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 14px; }
.legal-date { color: var(--muted); font-size: .9rem; margin-top: 8px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: #4b4f5c; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }
.legal a.inline { color: var(--red-deep); text-decoration: underline; }

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .perks-wrap { grid-template-columns: 1fr; gap: 30px; }
  .perks-text { position: static; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .links { display: none; }
  .topbar-hide { display: none; }
  .qa-grid { grid-template-columns: 1fr; }
  .perks-list { grid-template-columns: 1fr; }
  /* Comparativo vira cartões */
  .gc-head { display: none; }
  .gc-row { grid-template-columns: 1fr; }
  .gc-row + .gc-row { border-top: 8px solid var(--bg); }
  .gc-row > span { display: flex; justify-content: space-between; padding: 11px 18px; }
  .gc-row > span + span { border-top: 1px solid var(--line); }
  .gc-row > span::before { content: attr(data-l); color: var(--muted); font-weight: 600; }
  .gc-row:not(.gc-head) > span:first-child { background: var(--red-tint); font-weight: 700; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .trust { gap: 16px; padding: 18px; }
  .trust-sep { display: none; }
  .hero { padding: 56px 0 50px; }
}
