/* ============================================================
   Lenddev Make - Landing Page
   ============================================================ */

:root {
  --bg: #0B1B2B;
  --bg-alt: #0F2438;
  --panel: #122B42;
  --panel-border: rgba(23, 195, 135, 0.16);
  --green: #17C387;
  --green-deep: #0FA773;
  --light: #EEF5F1;
  --muted: rgba(238, 245, 241, 0.66);
  --muted-2: rgba(238, 245, 241, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--light);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) { .wrap { padding: 0 18px; } }

section { position: relative; }

/* ── Decoração: círculos tracejados ─────────────────────────── */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(23, 195, 135, 0.25);
  pointer-events: none;
  z-index: 0;
}

/* ── Reveal on scroll ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utilitários de texto ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 56px; position: relative; z-index: 1; }
.section-heading h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Botões ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: inherit;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: #06140F;
}
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost {
  background: rgba(238, 245, 241, 0.06);
  border: 1px solid rgba(238, 245, 241, 0.16);
  color: var(--light);
  font-weight: 600;
}
.btn-ghost:hover { background: rgba(238, 245, 241, 0.1); }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 27, 43, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 30px; width: auto; }
.nav-brand span { font-weight: 700; font-size: 1.05rem; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-actions .btn { padding: 11px 22px; font-size: 0.88rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 90px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(23,195,135,0.14) 0%, transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(15,167,115,0.12) 0%, transparent 50%),
    var(--bg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}
.hero h1 span { color: var(--green); }

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--light);
  margin: 0 0 22px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-ctas { display: flex; margin-bottom: 40px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
}
.quick-badge svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* ── Mockup visual do hero ───────────────────────────────────── */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.make-mockup {
  width: 100%;
  max-width: 380px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}
.make-mockup-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--panel-border);
}
.make-mockup-top span { width: 9px; height: 9px; border-radius: 50%; }
.make-mockup-top .r { background: #e5484d; }
.make-mockup-top .y { background: #f5a524; }
.make-mockup-top .g { background: var(--green); }
.make-mockup-top .make-mockup-title { margin-left: 6px; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.make-mockup-body { padding: 24px 22px; display: flex; flex-direction: column; }
.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(238,245,241,0.04);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.flow-node .flow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--panel-border); flex-shrink: 0; }
.flow-node.done { color: var(--light); }
.flow-node.done .flow-dot { background: var(--green); }
.flow-node.active { color: #06140F; background: var(--green); border-color: var(--green); }
.flow-node.active .flow-dot { background: #06140F; }
.flow-line { width: 2px; height: 20px; background: var(--panel-border); margin: 0 0 0 27px; }

.hero-visual .floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 2;
}
.floating-chip .chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.chip-1 { top: -22px; left: 4%; }
.chip-2 { bottom: -22px; right: 2%; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 10px; }
  .floating-chip { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 70px 0 56px; }
  .hero-ctas .btn { width: 100%; }
}

/* ── O que é ─────────────────────────────────────────────────── */
.section-about {
  padding: 90px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(23,195,135,0.1) 0%, transparent 45%),
    var(--bg-alt);
}
.about-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.about-inner p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
  margin: 0 0 22px;
  text-align: center;
}
.about-inner p:last-child { margin-bottom: 0; }
.about-inner strong { color: var(--light); font-weight: 600; }

.about-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 44px auto 0;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.about-flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 50px;
  padding: 12px 20px;
}
.about-flow-item .flow-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #06140F;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-flow-item span.label { font-size: 0.85rem; font-weight: 600; color: var(--light); }

@media (max-width: 480px) { .about-flow { flex-direction: column; align-items: stretch; } }

/* ── Recursos (grid) ─────────────────────────────────────────── */
.section-features {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 85%, rgba(15,167,115,0.12) 0%, transparent 45%),
    var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(23,195,135,0.4); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(23,195,135,0.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Para quem é (tabs) ──────────────────────────────────────── */
.section-segments {
  padding: 100px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(23,195,135,0.09) 0%, transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(15,167,115,0.1) 0%, transparent 40%),
    var(--bg-alt);
}
.segment-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.segment-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.segment-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.segment-tab:hover { color: #fff; border-color: rgba(23,195,135,0.4); }
.segment-tab.active {
  background: var(--green);
  color: #06140F;
  border-color: transparent;
}

.segment-panel {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 40px 44px;
  position: relative;
  z-index: 1;
}
.segment-panel.active { display: block; }
.segment-panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.segment-panel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(23,195,135,0.12);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.segment-panel-icon svg { width: 22px; height: 22px; }
.segment-panel h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0; }
.segment-panel ul { display: flex; flex-direction: column; gap: 14px; }
.segment-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.6;
}
.segment-panel li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.segment-panel .segment-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 480px) {
  .segment-panel { padding: 30px 24px; }
  .segment-tab { padding: 10px 16px; font-size: 0.82rem; }
}

/* ── Landing page grátis ─────────────────────────────────────── */
.section-lp {
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(23,195,135,0.1) 0%, transparent 40%),
    var(--bg);
}
.lp-card {
  background: linear-gradient(135deg, rgba(23,195,135,0.09) 0%, rgba(15,36,56,0.4) 60%);
  border: 1px solid rgba(23,195,135,0.3);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #06140F;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.lp-content h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 800; color: #fff; margin: 0 0 18px; line-height: 1.3; }
.lp-content p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin: 0 0 28px; }
.lp-content strong { color: var(--light); font-weight: 600; }

.lp-visual { display: flex; flex-direction: column; gap: 20px; }
.browser-mock {
  background: rgba(11,27,43,0.65);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  overflow: hidden;
}
.browser-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(238,245,241,0.04);
  border-bottom: 1px solid var(--panel-border);
}
.browser-mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--panel-border); }
.browser-mock-url {
  margin-left: 8px;
  font-size: 0.7rem;
  color: var(--muted-2);
  background: rgba(238,245,241,0.05);
  padding: 3px 12px;
  border-radius: 6px;
}
.browser-mock-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock-line { height: 10px; border-radius: 6px; background: rgba(238,245,241,0.1); }
.mock-line.w40 { width: 40%; }
.mock-line.w60 { width: 60%; }
.mock-block {
  height: 76px;
  border-radius: 10px;
  margin: 4px 0;
  background: linear-gradient(135deg, rgba(23,195,135,0.22), rgba(15,167,115,0.08));
}
.mock-btn { width: 130px; height: 30px; border-radius: 8px; background: var(--green); margin-top: 4px; }

.lp-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,27,43,0.6);
  border: 1px solid var(--panel-border);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light);
}
.lp-chip svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

@media (max-width: 768px) {
  .lp-card { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ── Planos ──────────────────────────────────────────────────── */
.section-pricing {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(23,195,135,0.08) 0%, transparent 40%),
    var(--bg-alt);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 940px;
  margin: 0 auto 40px;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.pro {
  border: 1.5px solid var(--green);
  box-shadow: 0 20px 50px rgba(23,195,135,0.14);
}
.price-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #06140F;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
}
.price-name { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin: 0 0 20px; }
.price-value { font-size: 2.4rem; font-weight: 800; color: #fff; margin: 0; line-height: 1; }
.price-value span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-breakdown {
  margin: 20px 0 26px;
  padding: 18px 20px;
  background: rgba(11,27,43,0.5);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-breakdown .row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); }
.price-breakdown .row strong { color: var(--light); font-weight: 500; }
.price-breakdown .row.free strong { color: var(--green); font-weight: 600; }

.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--light); line-height: 1.5; }
.price-features li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.price-card .btn { width: 100%; }

.pricing-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
.pricing-notes li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── Tabela comparativa ──────────────────────────────────────── */
.section-compare {
  padding: 100px 0;
  background:
    radial-gradient(circle at 92% 85%, rgba(15,167,115,0.1) 0%, transparent 40%),
    var(--bg);
}
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--panel-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--panel); }
.compare-table th, .compare-table td {
  padding: 16px 22px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--panel-border);
}
.compare-table th {
  font-weight: 700;
  color: #fff;
  background: rgba(23,195,135,0.06);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-table td { color: var(--muted); }
.compare-table td:first-child, .compare-table th:first-child { color: var(--light); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.yes svg, .compare-table th.yes-icon svg { width: 17px; height: 17px; color: var(--green); }
.compare-table td.center { text-align: center; }

/* ── Como funciona ───────────────────────────────────────────── */
.section-steps {
  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(23,195,135,0.1) 0%, transparent 40%),
    var(--bg-alt);
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #06140F;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── CTA final ───────────────────────────────────────────────── */
.section-cta-final {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(23,195,135,0.16) 0%, transparent 60%),
    var(--bg);
}
.section-cta-final h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; color: #fff; margin: 0 0 30px; position: relative; z-index: 1; }
.cta-final-contacts {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.cta-final-contacts a { color: var(--light); transition: color var(--transition); }
.cta-final-contacts a:hover { color: var(--green); }

/* ── WhatsApp flutuante ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--panel-border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-inner img { height: 30px; opacity: 0.85; }
.footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; font-size: 0.86rem; color: var(--muted); }
.footer-contacts a { color: var(--muted); transition: color var(--transition); }
.footer-contacts a:hover { color: var(--green); }
.footer-copy { font-size: 0.8rem; color: var(--muted-2); }

/* ── Modal de checkout ───────────────────────────────────────── */
.co-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.co-modal[hidden] { display: none; }
.co-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 20, 0.72);
  backdrop-filter: blur(4px);
}
.co-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: co-pop 0.22s ease;
}
@keyframes co-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.co-x {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.co-x:hover { color: var(--light); }
.co-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 6px;
}
.co-dialog h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}
.co-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
}
.co-price span:last-child {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
#co-form { display: flex; flex-direction: column; }
#co-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
#co-form input {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--light);
  background: rgba(238, 245, 241, 0.04);
  border: 1px solid rgba(238, 245, 241, 0.16);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
  transition: border-color var(--transition), background var(--transition);
}
#co-form input:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(23, 195, 135, 0.06);
}
#co-form .btn { width: 100%; margin-top: 4px; }
.co-feedback {
  font-size: 0.84rem;
  margin: 0 0 12px;
  min-height: 1.1em;
}
.co-feedback.err { color: #ff6b6b; }
.co-feedback.ok { color: var(--green); }
.co-note {
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}
