.dm-landing {
  --ink: #0a0c0f;
  --surface: #101419;
  --surface-2: #171c23;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #606a77;
  --line: #dfe3e7;
  --gold: #ffb703;
  --gold-dark: #8a5700;
  --gold-light: #ffd15c;
  --green: #25d366;
  --shadow: 0 20px 50px rgba(8, 12, 18, .12);
  --container: 1180px;
  --radius: 18px;
  --header-height: 92px;
  box-sizing: border-box;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.dm-landing *,
.dm-landing *::before,
.dm-landing *::after { box-sizing: border-box; }

body:has(> .dm-landing) {
  margin: 0;
  background: #f7f7f4;
}

body.dm-guinchos-site-page {
  margin: 0;
  background: #f7f7f4;
}

body.menu-open:has(.dm-landing) { overflow: hidden; }
body.dm-guinchos-site-page.menu-open { overflow: hidden; }

.dm-landing [id] { scroll-margin-top: var(--header-height); }

.dm-landing img { display: block; max-width: 100%; }

.dm-landing a { color: inherit; text-decoration: none; }

.dm-landing button { font: inherit; }

.dm-landing h1,
.dm-landing h2,
.dm-landing h3,
.dm-landing p { margin-top: 0; }

.dm-landing h1,
.dm-landing h2,
.dm-landing h3 { line-height: 1.08; letter-spacing: -.035em; }

.dm-landing svg { display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.dm-landing .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.dm-landing .skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.dm-landing .skip-link:focus { transform: translateY(0); }

.dm-landing .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(10, 12, 15, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dm-landing .header-content { display: flex; height: 100%; align-items: center; gap: 32px; }

.dm-landing .brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 10px; }

.dm-landing .brand img {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 183, 3, .68);
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .28);
}

.dm-landing .brand-copy { color: var(--white); font-size: 1.2rem; font-weight: 750; letter-spacing: -.04em; white-space: nowrap; }
.dm-landing .brand-copy strong { color: var(--gold); }

.dm-landing .main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 33px); margin-left: auto; }
.dm-landing .main-nav a { color: #d4d9dd; font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.dm-landing .main-nav a:hover, .dm-landing .main-nav a:focus-visible { color: var(--gold); }

.dm-landing .header-phone { display: flex; align-items: center; gap: 9px; color: var(--white); font-size: .94rem; font-weight: 800; line-height: 1.1; white-space: nowrap; }
.dm-landing .header-phone svg { width: 18px; height: 18px; color: var(--gold); }
.dm-landing .header-phone small { display: block; color: var(--gold); font-size: .63rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.dm-landing .menu-toggle { display: none; }

.dm-landing .hero { position: relative; min-height: min(720px, calc(100svh - var(--header-height))); isolation: isolate; overflow: hidden; background: var(--ink); }
.dm-landing .hero-media, .dm-landing .hero-overlay { position: absolute; inset: 0; }
.dm-landing .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dm-landing .hero-overlay { background: linear-gradient(90deg, rgba(5, 7, 9, .95) 0%, rgba(5, 7, 9, .78) 37%, rgba(5, 7, 9, .31) 71%, rgba(5, 7, 9, .42) 100%), linear-gradient(0deg, rgba(5, 7, 9, .52), transparent 42%); z-index: -1; }
.dm-landing .hero-media { z-index: -2; }
.dm-landing .hero-content { display: flex; min-height: min(720px, calc(100svh - var(--header-height))); flex-direction: column; justify-content: center; padding-block: 90px 100px; color: var(--white); }

.dm-landing .eyebrow, .dm-landing .section-kicker { margin-bottom: 15px; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.dm-landing .eyebrow { display: inline-flex; align-items: center; width: fit-content; gap: 8px; padding: 7px 11px; border: 1px solid rgba(255, 183, 3, .35); background: rgba(5, 7, 9, .48); color: var(--gold); }
.dm-landing .section-kicker { color: var(--gold-dark); }
.dm-landing .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(37, 211, 102, .16); }

.dm-landing .hero h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.7rem, 6.4vw, 5.6rem); font-weight: 850; }
.dm-landing .hero h1 em { color: var(--gold); font-style: normal; }
.dm-landing .hero-lead { max-width: 570px; margin-bottom: 30px; color: #e2e6ea; font-size: clamp(1.03rem, 1.6vw, 1.18rem); }
.dm-landing .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dm-landing .button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 12px 19px; border: 1px solid transparent; border-radius: 3px; font-size: .93rem; font-weight: 850; letter-spacing: -.01em; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.dm-landing .button:hover { transform: translateY(-2px); }
.dm-landing .button:focus-visible, .dm-landing .text-link:focus-visible, .dm-landing a:focus-visible, .dm-landing summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.dm-landing .button svg { width: 22px; height: 22px; stroke-width: 0; fill: currentColor; }
.dm-landing .button .whatsapp-icon { width: 24px; height: 24px; object-fit: contain; }
.dm-landing .button-primary { background: var(--green); color: #06240f; box-shadow: 0 10px 24px rgba(37, 211, 102, .22); }
.dm-landing .button-primary:hover { background: #48e381; box-shadow: 0 14px 28px rgba(37, 211, 102, .31); }
.dm-landing .button-outline { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(0,0,0,.22); }
.dm-landing .button-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.dm-landing .button-outline svg { stroke-width: 1.8; fill: none; }
.dm-landing .button-dark { background: var(--ink); color: var(--white); }
.dm-landing .button-dark:hover { background: #252b31; }

.dm-landing .hero-points { display: flex; flex-wrap: wrap; gap: 10px 23px; margin: 34px 0 0; padding: 0; list-style: none; color: #d8dde1; font-size: .85rem; font-weight: 650; }
.dm-landing .hero-points li { display: flex; align-items: center; gap: 8px; }
.dm-landing .hero-points li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); content: ""; }

.dm-landing .trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.dm-landing .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.dm-landing .trust-grid > div { display: flex; min-height: 128px; align-items: center; gap: 14px; padding: 22px clamp(18px, 3vw, 42px); border-right: 1px solid var(--line); }
.dm-landing .trust-grid > div:first-child { border-left: 1px solid var(--line); }
.dm-landing .trust-icon { display: grid; width: 39px; height: 39px; flex: 0 0 39px; place-items: center; border-radius: 50%; background: #fff3d5; color: #925f00; font-size: .8rem; font-weight: 950; }
.dm-landing .trust-icon svg { width: 21px; height: 21px; }
.dm-landing .trust-grid p { margin: 0; line-height: 1.25; }
.dm-landing .trust-grid strong, .dm-landing .trust-grid p span { display: block; }
.dm-landing .trust-grid strong { font-size: .9rem; }
.dm-landing .trust-grid p span { margin-top: 3px; color: var(--muted); font-size: .78rem; }

.dm-landing .section { padding-block: clamp(72px, 9vw, 126px); }
.dm-landing .section-heading { max-width: 690px; }
.dm-landing .section-heading h2, .dm-landing .process-copy h2, .dm-landing .coverage-copy h2, .dm-landing .gallery h2, .dm-landing .faq h2, .dm-landing .final-cta h2 { margin-bottom: 17px; font-size: clamp(2rem, 4.1vw, 3.55rem); font-weight: 820; }
.dm-landing .section-heading > p:last-child, .dm-landing .process-copy > p:not(.section-kicker), .dm-landing .coverage-copy > p:not(.section-kicker), .dm-landing .faq-intro > p:not(.section-kicker), .dm-landing .gallery-heading > p, .dm-landing .final-cta p:not(.section-kicker) { color: var(--muted); font-size: 1.03rem; }

.dm-landing .services { background: var(--paper); }
.dm-landing .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.dm-landing .service-card { min-height: 265px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 3px 0 rgba(10,12,15,.02); transition: transform .22s ease, box-shadow .22s ease; }
.dm-landing .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dm-landing .card-icon { display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center; border-radius: 13px; background: #fff3d5; color: #8b5d00; }
.dm-landing .card-icon svg { width: 31px; height: 31px; }
.dm-landing .service-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.dm-landing .service-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.dm-landing .process { background: var(--ink); color: var(--white); }
.dm-landing .process-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 135px); align-items: center; }
.dm-landing .process .section-kicker, .dm-landing .final-cta .section-kicker { color: var(--gold); }
.dm-landing .process-copy > p:not(.section-kicker) { color: #b8c0c8; }
.dm-landing .text-link { display: inline-flex; gap: 8px; margin-top: 15px; color: var(--gold); font-size: .95rem; font-weight: 800; }
.dm-landing .text-link span { transition: transform .2s ease; }
.dm-landing .text-link:hover span { transform: translateX(4px); }
.dm-landing .steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.dm-landing .steps li { display: grid; grid-template-columns: 58px 1fr; gap: 17px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); }
.dm-landing .steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.dm-landing .steps > li > span { color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .04em; }
.dm-landing .steps h3 { margin-bottom: 5px; font-size: 1.12rem; }
.dm-landing .steps p { margin: 0; color: #b8c0c8; font-size: .92rem; }

.dm-landing .coverage { background: var(--white); }
.dm-landing .coverage-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr); gap: clamp(40px, 7vw, 95px); align-items: center; }
.dm-landing .image-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.dm-landing .coverage-image { aspect-ratio: 4 / 3; }
.dm-landing .coverage-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.53), transparent 48%); content: ""; pointer-events: none; }
.dm-landing .coverage-image img { width: 100%; height: 100%; object-fit: cover; }
.dm-landing .image-caption { position: absolute; bottom: 19px; left: 20px; z-index: 1; color: var(--white); font-size: .79rem; font-weight: 750; }
.dm-landing .contact-list { display: grid; gap: 15px; margin: 29px 0 0; }
.dm-landing .contact-list div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dm-landing .contact-list dt { margin-bottom: 2px; color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dm-landing .contact-list dd { margin: 0; font-weight: 750; }
.dm-landing .contact-list a { color: var(--ink); }
.dm-landing .contact-list a:hover { color: #8b5d00; text-decoration: underline; }

.dm-landing .gallery { background: #eceeea; }
.dm-landing .gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.dm-landing .gallery-heading h2 { margin: 0; }
.dm-landing .gallery-heading > p { max-width: 300px; margin: 0; }
.dm-landing .gallery-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: repeat(2, 220px); gap: 14px; }
.dm-landing .gallery-item { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 12px; background: var(--surface); }
.dm-landing .gallery-item-large { grid-row: span 2; }
.dm-landing .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dm-landing .gallery-item:hover img { transform: scale(1.035); }
.dm-landing .gallery-caption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; margin: 0; padding: 35px 14px 12px; background: linear-gradient(0deg, rgba(5, 7, 9, .82), transparent); color: var(--white); font-size: .76rem; font-weight: 750; line-height: 1.25; }
.dm-landing .gallery-banner { aspect-ratio: 3 / 1; margin-top: 14px; }

.dm-landing .faq { background: var(--white); }
.dm-landing .faq-layout { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(400px, 1.18fr); gap: clamp(44px, 9vw, 128px); align-items: start; }
.dm-landing .faq-intro { position: sticky; top: 108px; }
.dm-landing .faq-intro .button { margin-top: 16px; }
.dm-landing .faq-list { border-top: 1px solid var(--line); }
.dm-landing .faq details { border-bottom: 1px solid var(--line); }
.dm-landing .faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 2px; cursor: pointer; font-weight: 780; list-style: none; }
.dm-landing .faq summary::-webkit-details-marker { display: none; }
.dm-landing .faq summary span { position: relative; width: 19px; height: 19px; flex: 0 0 19px; }
.dm-landing .faq summary span::before, .dm-landing .faq summary span::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--ink); content: ""; transform: translate(-50%, -50%); transition: transform .18s ease; }
.dm-landing .faq summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.dm-landing .faq details[open] summary span::after { transform: translate(-50%, -50%) rotate(0deg); }
.dm-landing .faq details p { max-width: 640px; margin: -4px 40px 23px 2px; color: var(--muted); font-size: .94rem; }

.dm-landing .final-cta { background: linear-gradient(125deg, #161b21 0%, #090b0e 70%); color: var(--white); }
.dm-landing .final-cta-content { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding-block: clamp(58px, 7vw, 86px); }
.dm-landing .final-cta .section-kicker { margin-bottom: 10px; }
.dm-landing .final-cta h2 { margin-bottom: 11px; }
.dm-landing .final-cta p:not(.section-kicker) { max-width: 600px; margin-bottom: 0; color: #c1c8ce; }
.dm-landing .final-cta .button { flex: 0 0 auto; }

.dm-landing .site-footer { background: var(--ink); color: #d4d9de; }
.dm-landing .footer-main { display: grid; grid-template-columns: 1.6fr .6fr .75fr; gap: 40px; padding-block: 57px 44px; }
.dm-landing .footer-brand .brand { margin-bottom: 16px; }
.dm-landing .footer-brand .brand img { width: 92px; height: 92px; }
.dm-landing .footer-brand p { max-width: 330px; margin: 0; color: #9ca7b0; font-size: .87rem; }
.dm-landing .footer-links { display: grid; align-content: start; gap: 8px; }
.dm-landing .footer-links p { margin: 0 0 4px; color: var(--white); font-size: .77rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.dm-landing .footer-links a { color: #aeb7be; font-size: .88rem; }
.dm-landing .footer-links a:hover { color: var(--gold); }
.dm-landing .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #87919a; font-size: .75rem; }
.dm-landing .footer-bottom a:hover { color: var(--white); }

.dm-landing .whatsapp-float { position: fixed; right: 23px; bottom: 23px; z-index: 40; display: inline-flex; align-items: center; gap: 10px; padding: 13px 17px; border: 2px solid var(--white); border-radius: 999px; background: var(--green); box-shadow: 0 12px 30px rgba(0,0,0,.25); color: #05230e; font-size: .86rem; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.dm-landing .whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.33); }
.dm-landing .whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; stroke-width: 0; }
.dm-landing .whatsapp-float .whatsapp-icon { width: 29px; height: 29px; object-fit: contain; }

@media (max-width: 960px) {
  .dm-landing .header-content { gap: 20px; }
  .dm-landing .main-nav { gap: 17px; }
  .dm-landing .main-nav a { font-size: .82rem; }
  .dm-landing .header-phone { font-size: .82rem; }
  .dm-landing .trust-grid > div { padding-inline: 18px; }
  .dm-landing .trust-grid p span { font-size: .72rem; }
  .dm-landing .process-layout, .dm-landing .faq-layout { gap: 55px; }
  .dm-landing .footer-main { grid-template-columns: 1.35fr .7fr .85fr; }
}

@media (max-width: 760px) {
  .dm-landing { --header-height: 76px; }
  .dm-landing .container { width: min(calc(100% - 32px), var(--container)); }
  .dm-landing .header-content { justify-content: space-between; gap: 12px; }
  .dm-landing .brand img { width: 60px; height: 60px; border-radius: 8px; }
  .dm-landing .brand-copy { font-size: 1.08rem; }
  .dm-landing .header-phone { display: none; }
  .dm-landing .menu-toggle { position: relative; z-index: 3; display: grid; width: 43px; height: 43px; padding: 11px 9px; place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.22); border-radius: 3px; background: transparent; color: var(--white); cursor: pointer; }
  .dm-landing .menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .dm-landing .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .dm-landing .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .dm-landing .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .dm-landing .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; visibility: hidden; gap: 0; margin: 0; padding: 13px 16px 20px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.14); box-shadow: 0 18px 30px rgba(0,0,0,.25); pointer-events: none; transform: translateY(-120%); transition: transform .24s ease, visibility 0s linear .24s; }
  .dm-landing .main-nav.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .dm-landing .main-nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); font-size: .94rem; }
  .dm-landing .main-nav a:last-child { border-bottom: 0; }
  .dm-landing .hero { min-height: 650px; }
  .dm-landing .hero-content { min-height: 650px; padding-block: 71px 75px; }
  .dm-landing .hero-overlay { background: linear-gradient(90deg, rgba(5, 7, 9, .92), rgba(5, 7, 9, .67)), linear-gradient(0deg, rgba(5, 7, 9, .67), transparent 60%); }
  .dm-landing .hero-media img { object-position: 58% center; }
  .dm-landing .hero h1 { font-size: clamp(2.35rem, 11.5vw, 3.4rem); }
  .dm-landing .hero-lead { font-size: 1rem; }
  .dm-landing .button { width: 100%; }
  .dm-landing .hero-actions { display: grid; width: min(100%, 380px); }
  .dm-landing .hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 15px; font-size: .77rem; }
  .dm-landing .trust-grid { grid-template-columns: 1fr; padding-block: 7px; }
  .dm-landing .trust-grid > div, .dm-landing .trust-grid > div:first-child { min-height: 0; padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); }
  .dm-landing .trust-grid > div:last-child { border-bottom: 0; }
  .dm-landing .section { padding-block: 68px; }
  .dm-landing .section-heading h2, .dm-landing .process-copy h2, .dm-landing .coverage-copy h2, .dm-landing .gallery h2, .dm-landing .faq h2, .dm-landing .final-cta h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .dm-landing .service-grid, .dm-landing .coverage-layout, .dm-landing .process-layout, .dm-landing .faq-layout { grid-template-columns: 1fr; }
  .dm-landing .service-grid { gap: 13px; margin-top: 31px; }
  .dm-landing .service-card { min-height: 0; padding: 25px; }
  .dm-landing .card-icon { margin-bottom: 21px; }
  .dm-landing .process-layout { gap: 35px; }
  .dm-landing .coverage-layout { gap: 35px; }
  .dm-landing .coverage-image { aspect-ratio: 1 / 1; }
  .dm-landing .gallery-heading { display: block; margin-bottom: 27px; }
  .dm-landing .gallery-heading > p { margin-top: 11px; }
  .dm-landing .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 145px 145px; gap: 10px; }
  .dm-landing .gallery-item-large { grid-column: span 2; grid-row: auto; }
  .dm-landing .gallery-banner { aspect-ratio: 4 / 3; margin-top: 10px; }
  .dm-landing .faq-intro { position: static; }
  .dm-landing .faq-layout { gap: 32px; }
  .dm-landing .faq summary { padding-block: 20px; }
  .dm-landing .faq details p { margin-right: 12px; }
  .dm-landing .final-cta-content { display: grid; gap: 24px; }
  .dm-landing .final-cta .button { width: fit-content; }
  .dm-landing .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 24px; padding-block: 44px 35px; }
  .dm-landing .footer-brand { grid-column: span 2; }
  .dm-landing .footer-bottom { display: grid; gap: 8px; }
  .dm-landing .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; justify-content: center; padding: 0; }
  .dm-landing .whatsapp-float span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
}

@media (max-width: 390px) {
  .dm-landing .hero-points { grid-template-columns: 1fr; }
  .dm-landing .footer-main { grid-template-columns: 1fr; }
  .dm-landing .footer-brand { grid-column: auto; }
}

@media (max-width: 340px) {
  .dm-landing .hero h1 { font-size: 2.25rem; }
}

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