:root {
  --brand: #f0801a;
  --brand-dark: #d65a00;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-alt: #fff7ed;
  --shadow: 0 20px 45px rgba(16, 24, 40, 0.08);
  --shadow-strong: 0 24px 60px rgba(16, 24, 40, 0.12);
  --radius: 22px;
  --radius-sm: 16px;
  --success: #067647;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%); }
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 12px 14px;
  background: #111827;
  color: #fff;
  border-radius: 14px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }
.topbar {
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  background: #111827;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links a:hover { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 236, .75);
}
.site-header.scrolled { box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06); }
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 148px; height: auto; object-fit: contain; }
.brand-text { display: grid; gap: 3px; line-height: 1.1; }
.brand-text strong { font-size: 20px; letter-spacing: -0.02em; }
.brand-text small { color: var(--brand-dark); font-size: 12px; font-weight: 700; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: #344054;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--brand-dark); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; border-radius: 999px; background: #111827; }
.mobile-menu { display: none; padding-bottom: 16px; }
.mobile-menu.show { display: block; }
.menu-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 8px;
}
.menu-panel a, .menu-panel button {
  border: none;
  background: transparent;
  padding: 13px 14px;
  border-radius: 14px;
  text-align: left;
  color: var(--text);
  font-weight: 700;
}
.menu-panel a:hover, .menu-panel button:hover { background: var(--surface-soft); }
.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(240,128,26,.15), transparent 0 280px),
    radial-gradient(circle at 10% 100%, rgba(214,90,0,.08), transparent 0 340px),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  padding-top: 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 24px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240,128,26,.16);
  background: rgba(240,128,26,.08);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}
.badge-soft { background: rgba(17,24,39,.06); border-color: rgba(17,24,39,.08); color: #344054; }
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 18px 0 0;
  max-width: 700px;
  font-size: 18px;
  color: var(--muted);
}
.hero-actions, .footer-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 600;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 0 5px rgba(240,128,26,.12);
}
.card {
  background: var(--surface);
  border: 1px solid rgba(228, 231, 236, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-panel {
  padding: 28px;
  box-shadow: var(--shadow-strong);
}
.panel-head h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.panel-head p { margin: 12px 0 0; color: var(--muted); }
.hero-checklist { margin-top: 22px; display: grid; gap: 12px; }
.check-item {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.check-item strong { display: block; font-size: 15px; }
.check-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.hero-panel-footer { margin-top: 22px; }
.trust-strip {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-grid div {
  display: grid;
  gap: 4px;
  padding: 4px 0;
}
.trust-grid strong { font-size: 15px; }
.trust-grid span { color: var(--muted); font-size: 14px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-head { max-width: 860px; margin-bottom: 32px; }
.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.grid-3, .grid-4, .form-grid, .contact-layout, .footer-grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card, .price-card, .step-card, .contact-card, .aside-card, .faq-item { padding: 26px; }
.info-card h3, .price-card h3, .step-card h3, .aside-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.info-card p, .price-card p, .step-card p, .aside-card p { margin: 0; color: var(--muted); }
.price-card.popular {
  border-color: rgba(240,128,26,.34);
  box-shadow: 0 22px 58px rgba(240,128,26,.18);
}
.price-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.price-value {
  margin-top: 22px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-caption { color: var(--muted); font-size: 13px; }
.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240,128,26,.14);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.list-check li {
  position: relative;
  padding-left: 30px;
  color: #344054;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.list-check-light li { color: rgba(255,255,255,.92); }
.list-check-light li::before { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); }
.step-card {
  position: relative;
  overflow: hidden;
}
.step-index {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(240,128,26,.1);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}
.faq-list { display: grid; gap: 14px; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; color: var(--muted); }
.contact-layout { grid-template-columns: minmax(0, 1.32fr) minmax(280px, .68fr); }
.aside-stack { display: grid; gap: 18px; }
.aside-list { display: grid; gap: 12px; color: #344054; }
.aside-cta {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
}
.aside-cta h3 { color: #fff; }
.aside-cta p { color: rgba(255,255,255,.86); }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(240,128,26,.8);
  box-shadow: 0 0 0 4px rgba(240,128,26,.14);
}
.error-text { min-height: 16px; font-size: 12px; color: #b42318; font-weight: 700; }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.form-note, .contact-note { color: var(--muted); font-size: 13px; }
.notice {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 700;
}
.notice.show { display: block; }
.notice.success { color: var(--success); background: rgba(6,118,71,.06); border-color: rgba(6,118,71,.18); }
.notice.error { color: #b42318; background: rgba(180,35,24,.06); border-color: rgba(180,35,24,.16); }
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.footer-brand img { width: 138px; }
.footer-text { margin-top: 16px; max-width: 560px; color: var(--muted); }
.footer h3 { margin: 0 0 14px; font-size: 16px; }
.footer-links { display: grid; gap: 12px; color: #475467; }
.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .7; cursor: default; transform: none; }
.btn-sm { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 30px rgba(240,128,26,.24);
}
.btn-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 38;
  min-width: 134px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 211, 102, .3);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.show { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,24,40,.58);
}
.modal-card {
  position: relative;
  width: min(100%, 860px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  box-shadow: 0 28px 74px rgba(16,24,40,.28);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}
.modal-header h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.modal-header p { margin: 12px 0 0; color: var(--muted); }
.modal-close {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 26px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .contact-layout, .footer-grid, .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar-note { display: none; }
  .nav-links, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding-top: 30px; }
  .section { padding: 74px 0; }
  .form-grid, .grid-4, .form-actions { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .modal-card { padding: 22px; }
  .brand img { width: 128px; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero h1 { font-size: 38px; }
  .whatsapp { min-width: 56px; width: 56px; font-size: 0; }
  .whatsapp::before { content: "W"; font-size: 22px; }
}


.brand-logo-only{gap:0;display:inline-flex;align-items:center;line-height:0}.brand-logo-only img{display:block;height:58px;width:auto;max-width:min(250px,46vw);object-fit:contain;object-position:center}.footer-brand.brand-logo-only img{height:64px;max-width:min(280px,52vw)}@media (max-width: 900px){.brand-logo-only img{height:52px;max-width:min(220px,58vw)}.footer-brand.brand-logo-only img{height:56px;max-width:min(230px,64vw)}}
