/* ===========================================================
   IPTVMax Brasil — Editorial Broadcast Aesthetic
   Magazine-print meets live TV broadcast graphics
   =========================================================== */

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

:root {
  --paper:        #F1ECE0;
  --paper-2:      #E8E2D2;
  --ink:          #0E0E0E;
  --ink-soft:     #2A2A2A;
  --muted:        #6F6A60;
  --hairline:     #1A1A1A;
  --red:          #E5092A;
  --red-deep:     #B30622;
  --yellow:       #F2E406;
  --cream:        #FBF8F0;

  --serif:  'Instrument Serif', 'Times New Roman', serif;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:   'DM Sans', system-ui, sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, monospace;

  --max:    1320px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

::selection { background: var(--red); color: var(--cream); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ================== ON-AIR TOP STRIP ================== */
.broadcast-strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.broadcast-strip .marquee {
  display: flex;
  white-space: nowrap;
  animation: scroll-l 60s linear infinite;
}

.broadcast-strip .marquee span {
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.broadcast-strip .marquee span::after {
  content: '✦';
  color: var(--red);
  font-size: 12px;
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(229,9,42,0.8);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,9,42,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(229,9,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,9,42,0); }
}

@keyframes scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-r {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ================== NAV ================== */
nav.main {
  position: sticky;
  top: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  z-index: 50;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.brand sup {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 6px;
  border-radius: 2px;
  font-weight: 500;
  position: relative;
  top: -8px;
}

.brand em {
  color: var(--red);
  font-style: normal;
}

nav.main ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav.main ul a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

nav.main ul a:hover { color: var(--red); }

nav.main ul a.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

nav.main ul a.cta::after {
  content: '→';
  transition: transform 0.2s;
}

nav.main ul a.cta:hover {
  background: var(--red);
  color: var(--paper);
}

nav.main ul a.cta:hover::after { transform: translateX(4px); }

/* ================== HERO ================== */
.hero {
  padding: 64px 32px 48px;
  position: relative;
  border-bottom: 1px solid var(--ink);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
}

.hero-meta strong { color: var(--ink); font-weight: 500; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero h1 .red { color: var(--red); }

.hero h1 .underline {
  display: inline-block;
  position: relative;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%; height: 0.18em;
  background: var(--yellow);
  z-index: -1;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-sub strong { background: var(--ink); color: var(--paper); padding: 1px 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.btn::after { content: '→'; transition: transform 0.2s; }

.btn:hover { background: var(--red); border-color: var(--red); }
.btn:hover::after { transform: translateX(6px); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover { background: var(--ink); color: var(--paper); }

.btn.huge { font-size: 17px; padding: 22px 36px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero side column — the big number */
.hero-side {
  border: 1px solid var(--ink);
  background: var(--cream);
  padding: 32px 28px;
  position: relative;
}

.hero-side::before {
  content: 'DADOS / 2025';
  position: absolute;
  top: -1px; left: -1px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
}

.hero-bignum {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.hero-bignum sup {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--red);
  font-weight: 700;
  position: relative;
  top: 12px;
}

.hero-bignum-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.hero-mini-stats div span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-mini-stats div strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  display: block;
}

/* ================== CHANNEL TICKER ================== */
.channel-ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 4px solid var(--red);
  position: relative;
}

.channel-ticker .label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--red);
  color: var(--paper);
  padding: 0 22px;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  font-weight: 700;
}

.channel-ticker .label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--paper);
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 1.6s ease-out infinite;
}

.channel-ticker .marquee {
  display: flex;
  white-space: nowrap;
  animation: scroll-l 90s linear infinite;
  padding-left: 160px;
}

.channel-ticker .marquee span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.channel-ticker .marquee span::after {
  content: '/';
  color: var(--red);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

/* ================== SECTION FRAMEWORK ================== */
section { padding: 96px 32px; position: relative; z-index: 2; }
section + section { border-top: 1px solid var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: end;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.section-num small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
  letter-spacing: 0.16em;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.section-head h2 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.section-head h2 .red { color: var(--red); }

.section-lede {
  max-width: 720px;
  margin: 24px 0 0 152px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.section-lede em {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}

/* ================== EDITORIAL CARDS ================== */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--ink);
  border-bottom: none;
  background: var(--cream);
}

.ed-card {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ed-card:nth-child(3n) { border-right: none; }

.ed-card:hover { background: var(--paper-2); }

.ed-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
}

.ed-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
}

.ed-card h3 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

.ed-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

/* ================== PULL QUOTE / INFO BOX ================== */
.pull {
  max-width: 980px;
  margin: 56px auto 0;
  padding: 42px 48px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
}

.pull::before {
  content: '“';
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--red);
  font-style: italic;
}

.pull p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  font-style: italic;
}

.pull strong { background: var(--red); color: var(--paper); padding: 0 6px; font-style: normal; font-family: var(--display); font-weight: 700; }

/* ================== COMPACT CHANNEL GRID ================== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0;
  max-width: var(--max);
  margin: 48px auto 0;
  border: 1px solid var(--ink);
  background: var(--cream);
}

.channel-cell {
  padding: 18px 14px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: left;
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.15s;
  position: relative;
}

.channel-cell .ch-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.channel-cell:hover { background: var(--ink); color: var(--paper); }
.channel-cell:hover .ch-num { color: var(--yellow); }

/* ================== STEPS / RECIPE ================== */
.recipe {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.recipe-step {
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink);
  align-items: start;
}

.recipe-step .step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--red);
}

.recipe-step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--ink);
}

.recipe-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
}

.recipe-step .timer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  border-top: 2px solid var(--red);
  padding-top: 8px;
}

.recipe-step .timer strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.02em;
}

/* ================== PLANS / PRICING TICKER ================== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--ink);
}

.plan {
  padding: 40px 32px 36px;
  background: var(--cream);
  border-right: 1px solid var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan:last-child { border-right: none; }

.plan.featured {
  background: var(--ink);
  color: var(--paper);
}

.plan.featured h3, .plan.featured .price-num { color: var(--paper); }
.plan.featured p, .plan.featured ul li { color: rgba(241,236,224,0.78); }
.plan.featured ul li { border-color: rgba(241,236,224,0.18); }

.plan .ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  font-weight: 700;
}

.plan .tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 700;
}

.plan h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--ink);
}

.plan .desc {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 24px;
}

.plan .price-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan .price-num small {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: inherit;
  opacity: 0.7;
}

.plan .price-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.plan.featured .price-cap { color: rgba(241,236,224,0.6); }

.plan ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan ul li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(14,14,14,0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan ul li::before {
  content: '+';
  font-family: var(--mono);
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.plan.featured .btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.plan.featured .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ================== FAQ ================== */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }

.faq-item .q-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}

.faq-item .toggle {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  text-align: right;
  color: var(--red);
  line-height: 1;
  transition: transform 0.3s;
}

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

.faq-item .ans {
  padding: 0 0 32px 84px;
  max-width: 820px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-item .ans a { color: var(--red); border-bottom: 1px solid var(--red); }

/* ================== FINAL CTA ================== */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
}

.final-cta::before {
  content: 'TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE TESTE';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22vw;
  letter-spacing: -0.05em;
  color: var(--red);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: scroll-l 80s linear infinite;
}

.final-cta-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }

.final-cta .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 28px;
  font-weight: 700;
}

.final-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.final-cta h2 .it {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--red);
}

.final-cta p {
  font-size: 18px;
  color: rgba(241,236,224,0.7);
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  background: var(--red);
  border-color: var(--red);
}

.final-cta .btn.ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.final-cta .btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* ================== BREADCRUMB ================== */
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

.crumb a:hover { color: var(--red); }
.crumb strong { color: var(--ink); font-weight: 600; }
.crumb span { padding: 0 10px; color: var(--red); }

/* ================== FOOTER ================== */
footer {
  background: var(--cream);
  border-top: 1px solid var(--ink);
  padding: 72px 32px 28px;
  position: relative;
  z-index: 2;
}

.foot-grid {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink);
}

.foot-brand p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 380px;
  margin-top: 16px;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 700;
}

.foot-col ul { list-style: none; }

.foot-col ul li { margin-bottom: 10px; }

.foot-col ul a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.15s;
}

.foot-col ul a:hover { color: var(--red); }

.foot-bot {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ================== CONTACT FORM ================== */
.contact-section {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--ink);
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-num {
  color: var(--red);
  border-color: var(--red);
}

.contact-info .section-num small { color: rgba(241,236,224, 0.5); }

.contact-info h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 28px 0 22px;
  color: var(--paper);
}

.contact-info h2 .it {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

.contact-info h2 .red { color: var(--red); }

.contact-info p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  color: rgba(241,236,224, 0.78);
  font-style: italic;
  margin-bottom: 36px;
}

.contact-info .meta-list {
  list-style: none;
  margin-top: 36px;
}

.contact-info .meta-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(241,236,224, 0.14);
  align-items: center;
}

.contact-info .meta-list li:last-child {
  border-bottom: 1px solid rgba(241,236,224, 0.14);
}

.contact-info .meta-list .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.contact-info .meta-list .val {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  padding: 48px 44px 44px;
  position: relative;
  border: 1px solid var(--paper);
}

.contact-form::before {
  content: '◉ FORMULÁRIO · TESTE GRÁTIS';
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 8px 14px;
  font-weight: 700;
}

.contact-form .form-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 18px 0 6px;
  color: var(--ink);
}

.contact-form .form-title em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--red);
}

.contact-form .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: var(--body);
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
}

.field label .req { color: var(--red); margin-left: 4px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s, background 0.15s;
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23E5092A' stroke-width='1.6' fill='none' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.field textarea { min-height: 96px; resize: vertical; font-family: var(--body); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--paper);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 12px;
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  font-weight: 700;
}

.contact-form button[type="submit"]:hover { background: #1eb854; border-color: #1eb854; }

.contact-form button[type="submit"]::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.297-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/></svg>") no-repeat center / contain;
  display: inline-block;
  margin-right: 4px;
}

.contact-form button[type="submit"]::after { content: ''; }

.form-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  text-align: center;
}

/* ================== FLOATING WHATSAPP BUTTON ================== */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  opacity: 0.55;
  animation: fab-ring 2.4s ease-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55), 0 6px 18px rgba(0,0,0,0.22);
}

.fab-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.fab-label {
  position: absolute;
  right: 78px;
  top: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 14px;
  white-space: nowrap;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transform: translate(8px, -50%);
  transition: opacity 0.2s, transform 0.2s;
}

.fab-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--ink);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.fab-whatsapp:hover .fab-label {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes fab-ring {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.55); opacity: 0;    }
}

@media (max-width: 720px) {
  .fab-whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .fab-whatsapp svg { width: 30px; height: 30px; }
  .fab-label { display: none; }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-card:nth-child(3n) { border-right: 1px solid var(--ink); }
  .ed-card:nth-child(2n) { border-right: none; }
  .plans { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--ink); }
  .plan:last-child { border-bottom: none; }
  .recipe-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .recipe-step .timer { grid-column: 1 / -1; text-align: left; padding-left: 80px; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .section-lede { margin-left: 0; font-size: 17px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  nav.main ul li:not(:last-child) { display: none; }
  .editorial-grid { grid-template-columns: 1fr; }
  .ed-card { border-right: none !important; }
  .pull { grid-template-columns: 1fr; padding: 32px; gap: 16px; }
  .pull::before { font-size: 80px; line-height: 0.4; }
  .pull p { font-size: 20px; }
  .faq-item summary { grid-template-columns: 40px 1fr 30px; gap: 14px; font-size: 17px; }
  .faq-item .ans { padding-left: 54px; font-size: 15px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero, section { padding-left: 20px; padding-right: 20px; }
  .wrap { padding: 0 20px; }
  .recipe-step { grid-template-columns: 50px 1fr; }
  .recipe-step .timer { padding-left: 70px; }
  .hero-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .contact-section { padding: 72px 20px; }
  .contact-form { padding: 40px 24px 28px; }
  .field-row { grid-template-columns: 1fr; }
}
