:root {
  --orange: #ff6700;
  --orange-2: #ff8f3d;
  --navy: #080722;
  --navy-2: #141331;
  --cream: #fff7ef;
  --sand: #f5efe8;
  --mint: #0f8b6f;
  --text: #1d2030;
  --muted: #707486;
  --line: rgba(8, 7, 34, 0.11);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 7, 34, 0.12);
  --soft-shadow: 0 16px 40px rgba(8, 7, 34, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { 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: #fffdfb;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 10%, rgba(255, 103, 0, 0.055), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(8, 7, 34, 0.045), transparent 22%);
  z-index: -2;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 12px 0;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(8, 7, 34, 0.08);
}
.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { width: 205px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(8, 7, 34, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 35px rgba(8, 7, 34, 0.04);
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255, 103, 0, 0.1);
  color: var(--orange);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 32px rgba(255, 103, 0, .26);
}
.btn-primary:hover { box-shadow: 0 20px 40px rgba(255, 103, 0, .32); }
.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,.84);
  border-color: rgba(8,7,34,.14);
}
.btn-secondary:hover { border-color: var(--navy); }
.btn-light {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 103, 0, .095);
  border: 1px solid rgba(255, 103, 0, .12);
  font-size: .86rem;
  font-weight: 900;
}
.badge.dark { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.16); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
}
.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .10;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}
h1, h2, h3 { color: var(--navy); }
.hero h1, .page-hero h1 {
  margin: 18px 0 18px;
  max-width: 780px;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.accent { color: var(--orange); }
.hero p, .page-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8,7,34,.04);
}
.proof-pill span { color: var(--orange); }
.hero-visual-wrap { position: relative; min-height: 560px; }
.hero-visual-main {
  position: absolute;
  inset: 16px 0 0 38px;
  border-radius: 48px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}
.hero-visual-main img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  left: 0;
  top: 70px;
  width: 236px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(8,7,34,.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--soft-shadow);
  animation: floatY 5.8s ease-in-out infinite;
}
.floating-card strong { display:block; color: var(--navy); font-size: 1rem; }
.floating-card span { color: var(--muted); font-size: .9rem; }
.floating-card .mini-logo { width: 48px; height: 48px; object-fit: contain; margin-bottom: 12px; }
.floating-card.bottom {
  left: auto;
  top: auto;
  right: 10px;
  bottom: 22px;
  width: 280px;
  animation-delay: -.8s;
}
.small-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}
.small-metric div {
  padding: 10px;
  border-radius: 16px;
  background: var(--cream);
  text-align: center;
}
.small-metric b { display:block; color: var(--orange); line-height: 1; }
.small-metric small { color: var(--muted); font-weight: 800; }
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

.trust-strip { padding: 26px 0; }
.trust-box {
  display: grid;
  grid-template-columns: 1fr repeat(3, .7fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}
.trust-box p { margin: 0; color: rgba(255,255,255,.74); }
.trust-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
.trust-item b { display: block; font-size: 1.5rem; color: #fff; line-height: 1; }
.trust-item span { color: rgba(255,255,255,.68); font-size: .9rem; }

.section { padding: 82px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255, 247, 239, .82), rgba(255,255,255,.9)); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-header.left { margin-inline: 0; text-align: left; }
.section-header h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-header p { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.72); }

.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(8,7,34,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 30px rgba(8,7,34,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--soft-shadow); border-color: rgba(255,103,0,.25); }
.card h3 { margin: 18px 0 10px; font-size: 1.22rem; letter-spacing: -.02em; }
.card p { margin:0; color: var(--muted); }
.icon {
  display:grid; place-items:center;
  width: 56px; height: 56px;
  border-radius: 19px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 1000;
  font-size: 1.35rem;
}
.service-card {
  min-height: 340px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-media {
  height: 175px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: var(--cream);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.service-body h3 { margin-top: 0; }
.card-link { display:inline-flex; align-items:center; margin-top: 18px; color: var(--orange); font-weight: 950; }

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(8,7,34,.1);
  box-shadow: 0 8px 28px rgba(8,7,34,.045);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display:grid; place-items:center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 1000;
  font-size: 1.15rem;
}
.process-step h3 { margin: 0 0 10px; }
.process-step p { margin: 0; color: var(--muted); }

.split { display:grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items:center; }
.panel-dark {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 42px;
  background: radial-gradient(circle at 82% 0%, rgba(255,103,0,.28), transparent 32%), var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.panel-dark h2 { color: #fff; margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height:1.04; letter-spacing:-.05em; }
.panel-dark p { color: rgba(255,255,255,.72); }
.feature-list { display:grid; gap: 14px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.feature-item strong { color: #fff; }
.check {
  flex: 0 0 auto;
  display:grid; place-items:center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 1000;
}
.quality-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.quality-pill {
  padding: 18px 14px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(8,7,34,.1);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 22px rgba(8,7,34,.035);
}
.cta-box {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 28px;
  padding: 44px;
  border-radius: 42px;
  color: #fff;
  background: radial-gradient(circle at right, rgba(255,103,0,.36), transparent 34%), linear-gradient(135deg, var(--navy), #17163e);
  box-shadow: var(--shadow);
}
.cta-box h2 { margin:0 0 10px; color:#fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height:1.03; letter-spacing:-.055em; }
.cta-box p { margin:0; color:rgba(255,255,255,.72); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
  background: linear-gradient(180deg, rgba(255,247,239,.9), rgba(255,255,255,.95));
}
.page-hero::after {
  content: "";
  position:absolute;
  right:-90px; top: 40px;
  width:220px; height:220px; border-radius:50%;
  background: var(--orange); opacity:.10;
}
.breadcrumb { color: var(--orange); font-weight: 950; font-size: .9rem; }
.page-layout { display:grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items:start; }
.aside-box {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--soft-shadow);
}
.aside-box h3 { margin:0 0 12px; color:#fff; font-size:1.45rem; }
.aside-box p, .aside-box li { color: rgba(255,255,255,.72); }
.aside-box ul { margin:20px 0 0; padding-left: 20px; }
.form-card {
  padding: 34px;
  border: 1px solid rgba(8,7,34,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--soft-shadow);
}
.form-card h2 { margin:0 0 10px; letter-spacing:-.035em; }
.form-card > p { margin:0 0 26px; color: var(--muted); }
.form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display:grid; gap:8px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 850; font-size: .93rem; }
input, select, textarea {
  width:100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(8,7,34,.12);
  border-radius: 16px;
  background:#fff;
  color: var(--text);
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 142px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,103,0,.1); }
input[type="file"] { padding: 13px; background: #fffaf6; }
.checkbox-row { display:flex; gap: 12px; align-items:flex-start; margin: 22px 0; }
.checkbox-row input { width: 18px; min-height: 18px; margin-top: 4px; }
.checkbox-row label { font-weight: 650; color: var(--text); }
.notice {
  display:none;
  padding: 16px 18px;
  border-radius: 16px;
  margin-bottom: 22px;
  background: rgba(15,139,111,.1);
  color: #0f604e;
  border: 1px solid rgba(15,139,111,.16);
  font-weight: 850;
}
.notice.show { display:block; }
.download-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.download-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(8,7,34,.1);
  background: #fff;
  box-shadow: 0 8px 24px rgba(8,7,34,.04);
}
.download-card h3 { margin:0 0 8px; }
.download-card p { margin:0 0 16px; color: var(--muted); font-size: .95rem; }
.download-card a { color: var(--orange); font-weight: 950; }
.steps-vertical { display:grid; gap: 14px; }
.step-line {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(8,7,34,.1);
  background:#fff;
}
.step-number {
  display:grid; place-items:center;
  width:36px; height:36px;
  border-radius:50%;
  background: var(--orange);
  color:#fff;
  font-weight: 1000;
  flex: 0 0 auto;
}
.step-line h3 { margin:0 0 4px; }
.step-line p { margin:0; color: var(--muted); }
.contact-list { display:grid; gap: 14px; }
.contact-item {
  display:flex;
  gap:14px;
  padding:18px;
  border-radius:22px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}
.contact-item span { color: var(--orange); font-weight: 1000; }

.contact-whatsapp,
.footer-whatsapp {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}
.contact-whatsapp:hover,
.footer-whatsapp:hover { color: var(--orange); }
.aside-actions { margin-top: 18px; }
.aside-actions .btn { width: 100%; }


.site-footer { padding: 58px 0 26px; background: var(--navy); color: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.25fr .7fr .7fr .9fr; gap: 32px; padding-bottom: 34px; }
.footer-brand img { width: 215px; background:#fff; padding: 10px 14px; border-radius: 18px; }
.footer-brand p, .footer-col a, .footer-col p { color: rgba(255,255,255,.69); }
.footer-col h3 { margin:0 0 16px; color:#fff; }
.footer-col a { display:block; margin-bottom:10px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; border-top:1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.54); font-size:.92rem; }
.mobile-cta { display:none; }

@media (max-width: 1080px) {
  .nav-links, .nav-actions .btn-primary { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .nav-links.open {
    position:absolute;
    top: 92px;
    left: 16px;
    right: 16px;
    display:grid;
    gap: 4px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 14px; border-radius: 16px; }
  .mobile-cta { display:inline-flex; justify-content:center; }
  .hero-grid, .split, .page-layout { grid-template-columns:1fr; }
  .hero-visual-wrap { min-height: 520px; }
  .aside-box { position: static; }
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-box { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { padding: 8px 0; }
  .navbar { min-height: 64px; }
  .logo img { width: 158px; }
  .nav-links.open { top: 80px; }
  .hero, .section, .page-hero { padding: 54px 0; }
  .hero h1, .page-hero h1 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  .hero-visual-wrap { min-height: 500px; }
  .hero-visual-main { inset: 20px 0 45px 0; border-radius: 34px; transform: none; }
  .floating-card { left: 14px; top: 12px; width: calc(100% - 28px); }
  .floating-card.bottom { right: 14px; bottom: 0; width: calc(100% - 28px); }
  .grid-3, .grid-2, .process, .form-grid, .download-grid, .quality-grid, .footer-grid { grid-template-columns:1fr; }
  .cta-box { display:block; padding: 32px; border-radius: 30px; }
  .cta-box .hero-actions { margin-top: 24px; }
  .form-card { padding: 24px; }
  .panel-dark { padding: 30px; border-radius: 30px; }
}
