:root {
  --ink: #101512;
  --ink-soft: #1a211d;
  --paper: #f5f6f0;
  --paper-warm: #eceee5;
  --white: #ffffff;
  --green: #5bea3f;
  --green-deep: #34b528;
  --green-soft: #dffbd6;
  --yellow: #f4e80b;
  --muted: #657069;
  --line: rgba(16, 21, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(5, 12, 8, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: var(--ink); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245, 246, 240, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark { width: 142px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: var(--white); }
.brand-mark img { width: 132px; height: 44px; object-fit: contain; }
.brand > span:last-child { display: grid; line-height: 1.08; }
.brand strong { font-size: 1rem; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 28px; font-size: .88rem; font-weight: 650; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--green-deep); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 46px; height: 46px; list-style: none; border: 1px solid var(--line); border-radius: 12px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 20px; height: 2px; background: var(--ink); display: block; }
.mobile-menu nav { position: absolute; top: 57px; right: 0; width: min(290px, calc(100vw - 32px)); display: grid; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
.mobile-menu nav a { padding: 13px 14px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-menu nav a:last-child { border: 0; color: #176e1f; }

.button { min-height: 52px; padding: 0 22px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; border: 1px solid transparent; border-radius: 6px; font-size: .9rem; font-weight: 800; letter-spacing: .01em; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(91, 234, 63, .46); outline-offset: 3px; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .82rem; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #253028; }
.button-primary { background: var(--green); color: var(--ink); box-shadow: 0 12px 35px rgba(91, 234, 63, .16); }
.button-primary:hover { background: #72f259; }
.button-ghost { border-color: rgba(255,255,255,.36); color: var(--white); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--green); background: rgba(91,234,63,.08); }
.button-outline-light { border-color: rgba(255,255,255,.26); color: var(--white); }
.button-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.button-wide { width: 100%; }

.hero { position: relative; min-height: 720px; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--white); }
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; top: -380px; left: -230px; border-radius: 50%; background: rgba(91,234,63,.2); filter: blur(110px); z-index: -1; }
.hero-grid { position: relative; z-index: 2; min-height: 720px; padding-block: 92px; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); gap: 70px; align-items: center; }
.hero-copy { max-width: 610px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 10px; color: #cbd3cd; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 29px; height: 2px; background: var(--green); }
.eyebrow-dark { color: var(--muted); }
.eyebrow-dark > span { background: var(--green-deep); }
.hero h1, .section-heading h2, .contact-card h2, .legal-aside h1 { margin: 0; font-size: clamp(3.15rem, 6vw, 6.6rem); line-height: .92; letter-spacing: -.065em; font-weight: 790; }
.hero h1 em, .dark-heading h2 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: #bdc7c0; font-size: 1.14rem; line-height: 1.75; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { margin: 30px 0 0; padding: 0; display: flex; gap: 22px; flex-wrap: wrap; list-style: none; color: #aeb9b2; font-size: .8rem; font-weight: 650; }
.hero-points span { margin-right: 5px; color: var(--green); }
.hero-visual { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: #202723; box-shadow: 0 42px 100px rgba(0,0,0,.48); transform: rotate(1.5deg); }
.hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.visual-topbar { height: 52px; padding: 0 18px; display: flex; align-items: center; gap: 10px; color: #d7ded9; font-size: .75rem; font-weight: 700; }
.visual-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(91,234,63,.13); }
.visual-live { margin-left: auto; padding: 5px 8px; border: 1px solid rgba(91,234,63,.33); border-radius: 99px; color: var(--green); font-size: .6rem; letter-spacing: .1em; }
.visual-map { height: 390px; overflow: hidden; }
.visual-map img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(.96); }
.visual-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.visual-metrics div { padding: 18px; display: grid; gap: 3px; border-right: 1px solid var(--line-dark); }
.visual-metrics div:last-child { border: 0; }
.visual-metrics strong { color: var(--white); font-size: .83rem; }
.visual-metrics span { color: #89958e; font-size: .66rem; }
.hero-grid-lines { position: absolute; inset: 0; z-index: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 68%); }

.signal-strip { padding: 19px 0; background: var(--green); color: var(--ink); overflow: hidden; }
.signal-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; white-space: nowrap; font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.signal-inner i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); opacity: .45; }

.section { padding: 118px 0; }
.section-heading { margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 5.1rem); }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.22); transition: background .2s ease, transform .2s ease; }
.feature-card:hover { position: relative; z-index: 2; background: var(--white); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(8,18,11,.08); }
.feature-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.feature-meta span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 4px; color: #217426; font-size: .61rem; font-weight: 900; letter-spacing: .11em; }
.feature-meta small { color: #a0a8a2; font-size: .67rem; }
.feature-card h3 { margin: 0 0 12px; font-size: 1.24rem; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }

.section-dark { position: relative; overflow: hidden; background: var(--ink-soft); color: var(--white); }
.section-dark::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 34px 34px; }
.section-dark .shell { position: relative; }
.dark-heading { max-width: 870px; }
.dark-heading h2 { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 54px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.steps-grid article { padding: 32px 34px 36px 0; border-right: 1px solid var(--line-dark); }
.steps-grid article:not(:first-child) { padding-left: 34px; }
.steps-grid article:last-child { border: 0; }
.steps-grid span { color: var(--green); font: 800 .67rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.steps-grid h3 { margin: 22px 0 8px; font-size: 1.45rem; }
.steps-grid p { margin: 0; color: #9eaaa2; font-size: .9rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line-dark); background: #242c27; }
.gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
.gallery-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7,12,9,.88)); }
.gallery-card span { position: absolute; z-index: 2; inset: auto 24px 22px; display: flex; justify-content: space-between; align-items: center; font-size: .92rem; font-weight: 750; }
.gallery-card b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.platform-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; width: max-content; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: #176d22; font-size: .88rem; font-weight: 800; }
.text-link-light { color: var(--white); }

.privacy-section { background: var(--paper-warm); }
.privacy-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 90px; align-items: start; }
.privacy-grid h2 { max-width: 600px; margin: 0; font-size: clamp(2.6rem, 4.6vw, 4.7rem); line-height: 1; letter-spacing: -.055em; }
.privacy-copy { padding: 36px 0 0 48px; border-left: 1px solid var(--line); }
.privacy-copy > p { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.privacy-copy ul { margin: 28px 0; padding: 0; list-style: none; }
.privacy-copy li { padding: 12px 0 12px 27px; position: relative; border-bottom: 1px solid var(--line); font-weight: 720; }
.privacy-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green-deep); }

.contact-section { padding: 42px 0; background: var(--ink); color: var(--white); }
.contact-card { padding: 72px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; border: 1px solid rgba(91,234,63,.38); background: linear-gradient(135deg, rgba(91,234,63,.08), transparent 62%); }
.contact-card h2 { margin-bottom: 18px; font-size: clamp(2.6rem, 4.7vw, 4.9rem); }
.contact-card p:not(.eyebrow) { max-width: 640px; margin: 0; color: #9faaa3; }
.contact-actions { display: grid; gap: 12px; }

.site-footer { padding: 62px 0 24px; background: #080c09; color: var(--white); }
.site-footer .brand small { color: #78837b; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.1fr .65fr; gap: 60px; align-items: start; }
.footer-address { display: grid; gap: 5px; color: #859088; font-size: .78rem; }
.footer-address strong { margin-bottom: 5px; color: #d8ded9; }
.footer-links { justify-self: end; display: grid; gap: 8px; font-size: .8rem; font-weight: 700; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-dark); color: #657068; font-size: .68rem; }
.whatsapp-float { position: fixed; z-index: 60; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: #1fc75a; color: #07150c; box-shadow: 0 12px 36px rgba(0,0,0,.28); font-size: .74rem; }
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); font-size: .65rem; font-weight: 950; }

.legal-header { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: var(--paper); }
.legal-header-inner { min-height: 88px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.legal-main { padding: 70px 0 110px; background: var(--paper); }
.legal-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 95px; align-items: start; }
.legal-aside { position: sticky; top: 32px; }
.legal-aside h1 { max-width: 310px; font-size: 3.25rem; line-height: .96; }
.legal-aside > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.legal-date { margin: 30px 0; padding: 18px 0; display: grid; gap: 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-date span { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; }
.legal-date strong { font-size: .85rem; }
.legal-aside nav { display: grid; }
.legal-aside nav a { padding: 8px 0; color: var(--muted); font-size: .82rem; font-weight: 650; }
.legal-aside nav a:hover { color: #207725; }
.legal-content { max-width: 760px; }
.legal-intro { margin-bottom: 50px; padding: 26px 28px; border-left: 4px solid var(--green-deep); background: var(--white); }
.legal-intro strong { color: #237328; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.legal-intro p { margin: 9px 0 0; font-size: 1.03rem; }
.legal-content section { position: relative; padding: 0 0 48px 62px; margin-bottom: 48px; border-bottom: 1px solid var(--line); scroll-margin-top: 28px; }
.legal-number { position: absolute; top: 4px; left: 0; color: var(--green-deep); font: 800 .7rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.legal-content h2 { margin: 0 0 24px; font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.08; letter-spacing: -.035em; }
.legal-content h3 { margin: 30px 0 12px; font-size: 1rem; }
.legal-content p, .legal-content li { color: #4f5a53; font-size: .94rem; line-height: 1.78; }
.legal-content p { margin: 0 0 16px; }
.legal-content ul, .legal-content ol { margin: 12px 0 22px; padding-left: 22px; }
.legal-content li { margin: 8px 0; padding-left: 3px; }
.legal-content a { color: #176d22; font-weight: 720; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-note { margin-top: 25px; padding: 20px 22px; border: 1px solid #c7dfc1; background: var(--green-soft); color: #345037; font-size: .88rem; line-height: 1.72; }
.legal-note strong { color: var(--ink); }
.legal-contact { display: grid; grid-template-columns: 1.2fr 1fr .65fr; border: 1px solid var(--line); background: var(--white); }
.legal-contact div { padding: 20px; display: grid; gap: 5px; border-right: 1px solid var(--line); }
.legal-contact div:last-child { border: 0; }
.legal-contact small { color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.legal-contact strong, .legal-contact a { color: var(--ink); font-size: .76rem; font-weight: 760; text-decoration: none; }
.legal-footer { padding: 26px 0; background: var(--ink); color: #9ba69f; font-size: .72rem; }
.legal-footer .shell { display: flex; justify-content: space-between; gap: 20px; }
.legal-footer a { color: var(--white); font-weight: 700; }

@media (max-width: 1020px) {
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; padding-block: 74px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 780px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 60px; }
  .legal-aside h1 { font-size: 2.65rem; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px, 660px); }
  .section { padding: 84px 0; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding-block: 70px; }
  .hero h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .visual-map { height: 300px; }
  .visual-metrics { grid-template-columns: 1fr; }
  .visual-metrics div { grid-template-columns: 100px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .signal-inner { justify-content: flex-start; width: max-content; animation: marquee 20s linear infinite; }
  @keyframes marquee { to { transform: translateX(-40%); } }
  .split-heading, .privacy-grid, .contact-card { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article:not(:first-child) { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .steps-grid article:last-child { border: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(n) { grid-column: auto; min-height: 280px; }
  .privacy-copy { padding: 28px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .contact-card { padding: 42px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; }
  .legal-aside { position: static; }
  .legal-aside nav { display: none; }
  .legal-content { max-width: none; }
  .legal-contact { grid-template-columns: 1fr; }
  .legal-contact div { border-right: 0; border-bottom: 1px solid var(--line); }
  .legal-contact div:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  .brand small { display: none; }
  .brand-mark { width: 118px; height: 43px; }
  .brand-mark img { width: 112px; height: 39px; }
  .hero-actions, .platform-actions { display: grid; }
  .hero-actions .button, .platform-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .hero-visual { margin-inline: -7px; }
  .visual-map { height: 240px; }
  .section-heading h2 { font-size: 2.75rem; }
  .feature-meta { margin-bottom: 38px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { padding-right: 8px; }
  .legal-header .button { min-height: 40px; padding-inline: 12px; font-size: .7rem; }
  .legal-aside h1 { font-size: 2.7rem; }
  .legal-content section { padding-left: 0; }
  .legal-number { position: static; display: block; margin-bottom: 12px; }
  .legal-footer .shell { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
