/* Dimension Cars — estilos
   Paleta: fucsia #E6007E · negro carbón #101820 · plata #BFC5CC · verde lima #A8E10C (solo lavadero) */

@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/barlow-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/barlow-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/barlow-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/barlow-800.woff2') format('woff2');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --fucsia: #E6007E;
  --fucsia-dark: #B8005F;
  --carbon: #101820;
  --plata: #BFC5CC;
  --lima: #A8E10C;
  --gris: #F4F5F7;
  --texto: #4A525B;
  --borde: #E4E7EA;
  --wrap: 1200px;
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body { font-family: 'Barlow', system-ui, sans-serif; color: var(--carbon); background: #fff; font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
main { overflow-x: clip; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; letter-spacing: -.01em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 200; background: var(--carbon); color: #fff; padding: 10px 16px; }

.kicker { font-size: 13px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--fucsia); margin-bottom: 14px; }
.kicker--lime { color: var(--lima); }

/* Botones: inclinados como la línea de velocidad del logo */
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; padding: 16px 26px; transform: skewX(-10deg); border-radius: 2px; transition: transform .2s, background-color .2s, box-shadow .2s, color .2s; white-space: nowrap; }
.btn > span { display: inline-block; transform: skewX(10deg); }
.btn:hover { transform: skewX(-10deg) translateY(-2px); }
.btn--pink { background: var(--fucsia); color: #fff; box-shadow: 0 8px 22px rgba(230, 0, 126, .28); }
.btn--pink:hover { background: var(--fucsia-dark); }
.btn--dark { background: var(--carbon); color: #fff; }
.btn--dark:hover { background: #26303b; box-shadow: 0 10px 24px rgba(16, 24, 32, .25); }
.btn--line { border: 2px solid var(--carbon); color: var(--carbon); padding: 14px 24px; }
.btn--line:hover { background: var(--carbon); color: #fff; }
.btn--lime { background: var(--lima); color: var(--carbon); }
.btn--lime:hover { box-shadow: 0 10px 28px rgba(168, 225, 12, .35); }
a:focus-visible, button:focus-visible, input:focus-visible + * { outline: 3px solid var(--fucsia); outline-offset: 3px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: box-shadow .25s; }
.header.is-scrolled { box-shadow: 0 1px 0 var(--borde), 0 8px 24px rgba(16, 24, 32, .06); }
.header__in { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { width: 170px; height: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { text-decoration: none; font-weight: 600; font-size: 15.5px; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--fucsia); transition: right .25s; }
.nav a:not(.btn):hover::after { right: 0; }
.nav__cta { margin-left: 10px; padding: 13px 22px; }
.burger { display: none; width: 46px; height: 46px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 26px; height: 3px; background: var(--carbon); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 48px 0 80px; position: relative; }
.hero::before { content: ""; position: absolute; right: 0; top: 0; width: 46%; height: 100%; background: linear-gradient(180deg, var(--gris), #fff); z-index: -1; }
.hero__in { display: grid; grid-template-columns: 1fr 1.12fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); margin-bottom: 36px; }
.hero h1 em { font-style: normal; color: var(--fucsia); }
.lead { font-size: 19px; color: var(--texto); max-width: 520px; margin-bottom: 32px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.proof { list-style: none; display: flex; gap: 0; margin-top: 44px; border-top: 1px solid var(--borde); padding-top: 22px; }
.proof li { flex: 1; padding-right: 18px; }
.proof li + li { border-left: 1px solid var(--borde); padding-left: 20px; }
.proof b { display: block; font-size: 26px; font-weight: 800; line-height: 1.1; }
.proof span { font-size: 14px; color: var(--texto); }

/* ---------- Comparador antes / después ---------- */
.ba { --pos: 50%; position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 16 / 11; background: #cfd4d9; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.ba__layer { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ba__before { background: linear-gradient(160deg, #c9ced4, #b3b9c0); }
.ba__after { background: linear-gradient(160deg, #ffffff, #eef0f3); clip-path: inset(0 0 0 var(--pos)); }
.ba__ill { width: 90%; }
.ba--hero .ba__ill { width: 96%; }
.ba__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; margin-left: -2px; background: #fff; box-shadow: 0 0 0 1px rgba(16, 24, 32, .08); pointer-events: none; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; border-radius: 50%; background: var(--fucsia) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l-6 6 6 6M15 6l6 6-6 6' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 26px no-repeat; box-shadow: 0 8px 22px rgba(230, 0, 126, .45); transition: transform .2s; }
.ba:hover .ba__handle::after { transform: scale(1.08); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; }
.ba__range:focus-visible ~ .ba__handle::after, .ba__range:focus-visible + .ba__handle::after { outline: 3px solid var(--carbon); outline-offset: 3px; }
.ba__tag { position: absolute; top: 18px; z-index: 2; font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; padding: 7px 12px; border-radius: 3px; pointer-events: none; }
.ba__tag--l { left: 18px; background: var(--carbon); color: #fff; }
.ba__tag--r { right: 18px; background: var(--fucsia); color: #fff; }
.ba--hero { box-shadow: 0 30px 60px rgba(16, 24, 32, .14); aspect-ratio: 16 / 10.5; }

/* ---------- Aseguradoras ---------- */
.trust { background: #fff; border-top: 1px solid var(--borde); border-bottom: 1px solid var(--borde); }
.trust__in { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "lbl note" "list list"; align-items: center; row-gap: 24px; padding-top: 30px; padding-bottom: 34px; }
.trust__lbl { grid-area: lbl; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.trust__list { grid-area: list; list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 36px; }
.trust__list li { display: flex; align-items: center; justify-content: center; }
.trust__list img { height: var(--h, 34px); width: auto; max-width: 100%; }
.trust__note { grid-area: note; font-size: 14px; font-weight: 600; color: var(--fucsia); }

/* ---------- Secciones ---------- */
.sec { padding: 110px 0; }
.sec--gray { background: var(--gris); }
.sec__head { max-width: 720px; margin-bottom: 48px; }
.sec__head--min { margin-bottom: 24px; }
.sec h2 { font-size: clamp(32px, 4vw, 48px); }
/* Rótulos destacados de Taller y Lavadero */
#trabajos .kicker, #taller .kicker, #lavadero .kicker { font-size: 20px; font-weight: 800; letter-spacing: .3em; margin-bottom: 18px; }
#taller { padding-top: 90px; padding-bottom: 150px; }
#taller h2 { font-size: clamp(24px, 2.6vw, 34px); }
#taller .sec__head { margin-bottom: 32px; }

/* Adelanto del lavadero al final del taller */
.teaser { display: flex; align-items: center; justify-content: center; gap: 14px; width: max-content; max-width: 100%; margin: 56px auto 0; background: var(--carbon); color: #fff; text-decoration: none; font-weight: 600; font-size: 17px; padding: 16px 28px; border-radius: 40px; box-shadow: 0 14px 30px rgba(16, 24, 32, .18); transition: transform .25s, box-shadow .25s; }
.teaser b { color: var(--lima); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.teaser i { font-style: normal; color: var(--lima); font-weight: 800; animation: nudge 1.6s ease-in-out infinite; }
.teaser:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(16, 24, 32, .25); }
@keyframes nudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(5px); } }
.sec__sub { font-size: 18px; color: var(--texto); margin-top: 14px; }

/* Trabajos */
.works { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); gap: 24px; }
.work .ba { aspect-ratio: 4 / 3; border-radius: 10px; }
.work .ba__handle::after { width: 44px; height: 44px; margin: -22px 0 0 -22px; background-size: 22px; }
.work h2 { font-size: 16px; font-weight: 700; margin-top: 10px; }
.work p { color: var(--texto); font-size: 15px; }
.works__more { margin-top: 28px; color: var(--texto); }
.works__more a { color: var(--fucsia); font-weight: 700; text-decoration: none; }
.works__more a:hover { text-decoration: underline; }

/* Taller */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: #fff; border-radius: 12px; padding: 30px 26px; min-height: 0; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; border: 1px solid var(--borde); transition: transform .25s, box-shadow .25s; }
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 56px; background: var(--fucsia); transition: width .35s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 24, 32, .08); }
.card:hover::before { width: 100%; }
.card__ic { width: 48px; height: 48px; color: var(--carbon); margin-bottom: 16px; }
.card h3 { font-size: 21px; line-height: 1.1; }
.card p { color: var(--texto); font-size: 15.5px; }


/* Lavadero */
.lav { background: var(--carbon); color: #fff; position: relative; overflow: hidden; margin-top: -90px; padding-top: 200px; clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%); }
.lav__bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lav__bubbles span { position: absolute; left: var(--x); bottom: -60px; width: var(--s); height: var(--s); border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .30); background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .75) 0 7%, transparent 9%), radial-gradient(circle at 50% 50%, transparent 55%, rgba(255, 255, 255, .08) 72%, rgba(168, 225, 12, .22) 100%); box-shadow: inset -2px -3px 6px rgba(168, 225, 12, .18); animation: bubble var(--d) linear var(--w) infinite; opacity: 0; }
@keyframes bubble { 0% { transform: translate(0, 0) scale(.8); opacity: 0; } 10% { opacity: 1; } 50% { transform: translate(14px, -55vh) scale(1); } 90% { opacity: .8; } 100% { transform: translate(-10px, -110vh) scale(1.1); opacity: 0; } }
.lav::after { content: ""; position: absolute; right: -120px; bottom: -160px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(168, 225, 12, .16), transparent 65%); pointer-events: none; }
.lav__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.lav .sec__sub { color: #A9B0B8; margin-bottom: 34px; }
.lav__head h2 { margin-bottom: 30px; }
.lav__list { display: grid; gap: 12px; }
.lav__item { display: flex; gap: 16px; align-items: center; background: #17222C; border: 1px solid #23303C; border-radius: 10px; padding: 20px 24px; transition: border-color .25s, transform .25s; }
.lav__item:hover { border-color: var(--lima); transform: translateX(6px); }
.lav__dot { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lima) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23101820' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat; }
.lav__item h3 { font-size: 20px; }



/* Contacto */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: stretch; }
.contact h2 { margin-bottom: 30px; }
.contact dl { display: grid; gap: 0; }
.contact dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--borde); }
.contact dl > div:last-child { border-bottom: 1px solid var(--borde); }
.contact dt { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding-top: 4px; }
.contact dd { font-size: 17px; color: var(--texto); }
.contact dd a { color: var(--carbon); font-weight: 600; text-decoration: none; border-bottom: 2px solid rgba(230, 0, 126, .35); transition: border-color .2s; }
.contact dd a:hover { border-color: var(--fucsia); }
.contact__map { border-radius: 12px; overflow: hidden; min-height: 420px; background: var(--gris); border: 1px solid var(--borde); }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Footer */
.footer { background: var(--carbon); color: #A9B0B8; padding: 56px 0 30px; font-size: 15px; }
.footer__in { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; }
.footer nav { display: flex; gap: 24px; }
.footer nav a { text-decoration: none; color: #fff; font-weight: 600; }
.footer nav a:hover { color: var(--fucsia); }
.footer__legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid #23303C; font-size: 13px; }

/* Reseñas tipo notificación */
.toast { position: fixed; left: 22px; bottom: 22px; z-index: 95; width: 320px; max-width: calc(100vw - 88px); background: #fff; border-radius: 12px; box-shadow: 0 18px 44px rgba(16, 24, 32, .18), 0 0 0 1px rgba(16, 24, 32, .06); opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .4s ease, transform .45s cubic-bezier(.2, .7, .2, 1); pointer-events: none; }
.toast.is-on { opacity: 1; transform: none; pointer-events: auto; }
.toast::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 4px; border-radius: 0 3px 3px 0; background: var(--fucsia); }
.toast__link { display: flex; gap: 14px; padding: 16px 38px 16px 20px; text-decoration: none; color: var(--carbon); }
.toast__av { flex: none; width: 42px; height: 42px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.toast__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.toast__top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.toast__name { font-size: 15px; font-weight: 800; }
.toast__stars { font-size: 14px; letter-spacing: 1px; color: #D5D9DE; line-height: 1; }
.toast__stars i { font-style: normal; color: #F5A623; }
.toast__txt { font-size: 14px; line-height: 1.45; color: var(--texto); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.toast__src { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #8C939B; margin-top: 2px; }
.toast__src svg { width: 13px; height: 13px; }
.toast__close { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: transparent; color: #8C939B; font-size: 20px; line-height: 1; cursor: pointer; }
.toast__close:hover { background: var(--gris); color: var(--carbon); }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 62px; height: 62px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(37, 211, 102, .45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(1.6); opacity: 0; } }

/* Aparición al hacer scroll (solo si hay JS) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.js .reveal[data-anim="left"] { transform: translateX(-48px); }
.js .reveal[data-anim="right"] { transform: translateX(48px); }
.js .reveal[data-anim="zoom"] { transform: translateY(24px) scale(.92); }
.js .reveal[data-anim].is-in { transform: none; }
.js .card.reveal::before { width: 0; }
.js .card.reveal.is-in::before { width: 56px; transition: width .6s .35s cubic-bezier(.2, .7, .2, 1); }
.js .card.reveal.is-in:hover::before { width: 100%; transition-delay: 0s; }
.js .card.reveal .card__ic { transition: transform .6s .25s cubic-bezier(.3, 1.6, .5, 1); transform: scale(.6) rotate(-12deg); }
.js .card.reveal.is-in .card__ic { transform: none; }
/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  :root { --header-h: 70px; }
  .header__logo img { width: 140px; }
  .burger { display: flex; }
  .nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 28px; box-shadow: 0 20px 30px rgba(16, 24, 32, .1); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav a:not(.btn) { padding: 16px 0; border-bottom: 1px solid var(--borde); font-size: 18px; }
  .nav a:not(.btn)::after { display: none; }
  .nav__cta { margin: 20px 0 0; }
  .hero { padding: 28px 0 64px; }
  .hero::before { display: none; }
  .hero__in { grid-template-columns: 1fr; gap: 36px; }
  .ba--hero { order: -1; }
  .lav__grid, .contact { grid-template-columns: 1fr; gap: 40px; }
  .works { grid-template-columns: 1fr 1fr; gap: 12px; }
  .work h2 { font-size: 14px; margin-top: 8px; }
  .work .ba__handle::after { width: 32px; height: 32px; margin: -16px 0 0 -16px; background-size: 16px; }
  .trust__in { grid-template-columns: 1fr; grid-template-areas: "lbl" "list" "note"; text-align: center; }
  .trust__list { justify-content: center; gap: 24px 30px; }
  .trust__list img { height: calc(var(--h, 34px) * .8); }
  .footer__in { grid-template-columns: 1fr; gap: 24px; }
  .sec { padding: 80px 0; }
  #taller { padding-top: 64px; padding-bottom: 100px; }
  #taller h2 { font-size: 22px; }
  .lav { margin-top: -50px; padding-top: 130px; clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%); }
  #trabajos .kicker, #taller .kicker, #lavadero .kicker { font-size: 16px; }
  .teaser { font-size: 15px; padding: 14px 20px; margin: 40px 0 0; max-width: calc(100% - 70px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .lead { font-size: 17px; }
  .hero__btns .btn { flex: 1 1 100%; }
  .proof b { font-size: 21px; }
  .proof span { font-size: 12.5px; }
  .proof li + li { padding-left: 12px; }
  .proof li { padding-right: 8px; }
  .cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card { padding: 20px 16px; }
  .card__ic { width: 38px; height: 38px; margin-bottom: 10px; }
  .card h3 { font-size: 17px; }
  .lav__item { padding: 16px 18px; gap: 12px; }
  .lav__dot { width: 22px; height: 22px; background-size: 14px; }
  .lav__item h3 { font-size: 18px; }
  .contact dl > div { grid-template-columns: 1fr; gap: 4px; }
  .ba__handle::after { width: 46px; height: 46px; margin: -23px 0 0 -23px; background-size: 22px; }
  .ba__tag { top: 12px; font-size: 10.5px; padding: 5px 9px; }
  .ba__tag--l { left: 12px; } .ba__tag--r { right: 12px; }
  .footer nav { flex-wrap: wrap; gap: 14px 22px; }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .toast { left: 12px; right: auto; top: calc(var(--header-h) + 10px); bottom: auto; width: min(320px, calc(100vw - 24px)); max-width: none; transform: translateY(-18px) scale(.98); }
  .toast.is-on { transform: none; }
  .toast__link { padding: 13px 34px 13px 16px; gap: 11px; }
  .toast__av { width: 36px; height: 36px; font-size: 16px; }
  .toast__txt { font-size: 13px; -webkit-line-clamp: 2; }
}

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