:root {
    --ink: #162332;
    --ink-soft: #475569;
    --paper: #ffffff;
    --surface: #f3f5f7;
    --line: #dce2e8;
    --accent: #ed6b24;
    --accent-dark: #bd4510;
    --success: #176b45;
    --error: #a83232;
    --radius: 12px;
    --container: 1180px;
    --shadow: 0 18px 48px rgba(22, 35, 50, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; background: var(--paper); scroll-behavior: smooth; }
body {
    width: 100%;
    min-width: 0;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}
body.menu-open { overflow: hidden; }
main { width: 100%; min-width: 0; }
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #ffad70; outline-offset: 3px; }
.section, .header-inner, .nav-inner, .footer-inner { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-compact { padding-block: clamp(36px, 5vw, 64px); }
.section-muted { background: var(--surface); box-shadow: 0 0 0 100vmax var(--surface); clip-path: inset(0 -100vmax); }
.eyebrow { margin-bottom: 12px; color: var(--accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.section-heading { max-width: 820px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-heading p:last-child { margin-bottom: 0; }

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 21px;
    border: 2px solid var(--accent);
    border-radius: 7px;
    color: #fff;
    background: var(--accent);
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { border-color: var(--accent-dark); background: var(--accent-dark); transform: translateY(-1px); }
.button:active { transform: translateY(1px); }
.button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.button-small { min-height: 42px; padding: 8px 16px; font-size: .9rem; }
.button-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); }
.button-outline:hover { color: var(--ink); background: #fff; border-color: #fff; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.97); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: clamp(150px, 18vw, 210px); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; text-decoration: none; white-space: nowrap; }
.phone-link img { width: 22px; }
.primary-nav { background: var(--ink); color: #fff; }
.nav-inner { min-height: 52px; display: flex; align-items: stretch; gap: 4px; }
.nav-inner a { display: flex; min-height: 48px; align-items: center; padding: 0 18px; border-bottom: 3px solid transparent; text-decoration: none; transition: background-color .18s ease, border-color .18s ease; }
.nav-inner a:hover, .nav-inner a.is-active { border-bottom-color: var(--accent); background: rgba(255,255,255,.08); }
.language-switcher { min-height: 48px; display: flex; align-items: center; gap: 5px; margin-left: auto; padding-left: 14px; }
.language-switcher > span { margin-right: 3px; color: #cad3dc; font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.language-switcher button { min-width: 40px; min-height: 36px; padding: 5px 9px; border: 1px solid rgba(255,255,255,.35); border-radius: 5px; color: #fff; background: transparent; font-size: .8rem; font-weight: 800; cursor: pointer; transition: color .18s ease, background-color .18s ease, border-color .18s ease; }
.language-switcher button:hover, .language-switcher button[aria-pressed="true"] { color: var(--ink); background: #fff; border-color: #fff; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-carousel { position: relative; min-height: clamp(440px, calc(100svh - 134px), 720px); overflow: hidden; color: #fff; background: var(--ink); }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; pointer-events: none; transition: opacity .65s ease; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,18,27,.88) 0%, rgba(9,18,27,.55) 48%, rgba(9,18,27,.15) 100%); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: absolute; z-index: 2; inset: 0; width: min(100% - 40px, var(--container)); margin-inline: auto; display: flex; align-items: center; padding-block: 70px; }
.hero-copy { max-width: 720px; animation: reveal .6s both; }
.hero-copy h1, .hero-copy h2 { max-width: 680px; margin-bottom: 22px; font-size: clamp(2rem, 5vw, 4.4rem); }
.hero-copy .lead { color: #eef3f7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.carousel-controls { position: absolute; z-index: 4; right: max(20px, calc((100vw - var(--container)) / 2)); bottom: 28px; display: flex; align-items: center; gap: 10px; }
.carousel-button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: #fff; background: rgba(9,18,27,.45); cursor: pointer; }
.carousel-button:hover { background: var(--accent); border-color: var(--accent); }
.carousel-status { min-width: 62px; text-align: center; font-variant-numeric: tabular-nums; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 84px); align-items: start; }
.feature-list, .location-list, .product-list { margin: 0; padding: 0; list-style: none; }
.feature-list li, .location-list li, .product-list li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); }
.feature-list li::before, .location-list li::before, .product-list li::before { content: ""; position: absolute; left: 0; top: 24px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit { min-width: 0; padding: clamp(24px, 3vw, 38px); background: #fff; }
.benefit span { display: block; margin-bottom: 22px; color: var(--accent); font-size: 2rem; font-weight: 800; }
.benefit p:last-child { margin-bottom: 0; color: var(--ink-soft); }

.faq-list { max-width: 900px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; border: 0; color: var(--ink); background: transparent; font-weight: 750; text-align: left; cursor: pointer; }
.faq-question::after { content: "+"; color: var(--accent); font-size: 1.7rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 52px 24px 0; color: var(--ink-soft); }
.faq-answer[hidden] { display: none; }

.page-hero { position: relative; min-height: clamp(330px, 46vw, 560px); display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,18,27,.9), rgba(9,18,27,.08)); }
.page-hero-content { position: relative; z-index: 2; width: min(100% - 40px, var(--container)); margin-inline: auto; padding-block: clamp(42px, 7vw, 76px); }
.page-hero h1 { max-width: 800px; margin-bottom: 12px; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: #edf2f7; font-size: clamp(1rem, 2vw, 1.22rem); }

.gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.gallery-item { position: relative; min-width: 0; aspect-ratio: 1; padding: 0; overflow: hidden; border: 0; color: #fff; background: #fff; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.gallery-caption { position: absolute; inset: auto 0 0; display: grid; gap: 2px; padding: 38px 14px 14px; background: linear-gradient(0deg, rgba(9,18,27,.92), transparent); text-align: left; transform: translateY(100%); transition: transform .28s ease; }
.gallery-caption strong { font-size: .86rem; line-height: 1.25; }
.gallery-caption small { color: #ffb17f; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.1); filter: contrast(1.06); }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { transform: none; }
.gallery-dialog { width: min(900px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 18px; border: 0; border-radius: 12px; color: #fff; background: #0e1822; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.gallery-dialog::backdrop { background: rgba(5,10,16,.82); backdrop-filter: blur(5px); }
.gallery-dialog img { width: 100%; max-height: calc(100svh - 120px); object-fit: contain; background: #fff; }
.gallery-dialog p { margin: 14px 44px 0 0; font-weight: 750; }
.gallery-dialog-close { position: absolute; z-index: 2; top: 26px; right: 26px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: rgba(9,18,27,.75); font-size: 1.6rem; cursor: pointer; }

.product-carousel { position: relative; padding: clamp(22px, 4vw, 44px); border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.product-carousel:focus-visible { outline: 3px solid rgba(237,107,36,.45); outline-offset: 4px; }
.product-toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(24px, 4vw, 42px); }
.product-counter { min-width: 124px; margin: 0; color: var(--accent-dark); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.product-counter span, .product-counter strong { display: block; }
.product-counter strong { margin-top: 2px; color: var(--ink); font-size: 1rem; letter-spacing: .04em; }
.product-arrow { width: 54px; height: 48px; display: grid; place-items: center; border: 2px solid var(--accent); border-radius: 7px; color: var(--accent-dark); background: #fff; font-size: 1.5rem; font-weight: 800; cursor: pointer; transition: color .18s ease, background-color .18s ease, transform .18s ease; }
.product-arrow:hover { color: #fff; background: var(--accent); transform: translateX(-2px); }
.product-arrow:last-child:hover { transform: translateX(2px); }
.product-arrow:active { transform: scale(.96); }
.product-slide { display: none; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.product-slide.is-active { display: grid; animation: reveal .35s both; }
.product-slide p { color: var(--ink-soft); }
.product-slide img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.product-controls { display: none; }
.product-controls .carousel-button { color: var(--ink); border-color: var(--line); background: #fff; }
.product-controls .carousel-button:hover { color: #fff; border-color: var(--accent); background: var(--accent); }
.swipe-hint { margin: 24px 0 0; color: var(--ink-soft); font-size: .86rem; text-align: center; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.contact-details a { color: var(--accent-dark); font-weight: 700; }
.interactive-map { min-width: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.map-canvas { position: relative; }
.contact-map { width: 100%; border: 0; }
.map-hotspot { position: absolute; z-index: 3; width: clamp(18px, 2.2vw, 28px); height: clamp(18px, 2.2vw, 28px); padding: 0; border: 3px solid #fff; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(237,107,36,.25); transform: translate(-50%, -50%); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
.map-hotspot::after { content: ""; position: absolute; inset: -9px; border: 1px solid rgba(237,107,36,.55); border-radius: 50%; animation: map-pulse 2s infinite; }
.map-hotspot:hover, .map-hotspot:focus-visible, .map-hotspot.is-active { z-index: 4; background: var(--ink); box-shadow: 0 0 0 7px rgba(237,107,36,.3); transform: translate(-50%, -50%) scale(1.18); }
.map-point-1 { left: 20.5%; top: 54%; }
.map-point-2 { left: 18.8%; top: 50%; }
.map-point-3 { left: 23.5%; top: 39%; }
.map-point-4 { left: 25.3%; top: 43.5%; }
.map-point-5 { left: 46.7%; top: 31%; }
.map-point-6 { left: 48.6%; top: 36.5%; }
.map-point-7 { left: 77.7%; top: 50.5%; }
.map-point-8 { left: 79.9%; top: 48.5%; }
.map-detail { min-height: 116px; padding: 18px 20px; color: #fff; background: var(--ink); pointer-events: none; }
.map-detail .eyebrow { margin-bottom: 5px; color: #ffb17f; }
.map-detail h3 { margin-bottom: 4px; }
.map-detail p:last-child { margin-bottom: 0; color: #e2e8ef; font-size: .92rem; }
@keyframes map-pulse { 0%, 100% { opacity: 0; transform: scale(.75); } 50% { opacity: 1; transform: scale(1.15); } }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.location { min-width: 0; padding: 28px; background: #fff; }
.location h3 { margin-bottom: 8px; }
.location p { margin-bottom: 0; color: var(--ink-soft); }

.rfq-layout { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: clamp(36px, 7vw, 90px); align-items: start; }
.rfq-form { min-width: 0; padding: clamp(22px, 4vw, 42px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { min-width: 0; margin-bottom: 20px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .91rem; font-weight: 750; }
.required { color: var(--accent-dark); }
.field input, .field textarea { width: 100%; max-width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #aab5c1; border-radius: 6px; color: var(--ink); background: #fff; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: 3px solid rgba(237,107,36,.2); }
.field-help { margin: 6px 0 0; color: var(--ink-soft); font-size: .84rem; }
.form-message { margin-bottom: 24px; padding: 14px 16px; border-left: 4px solid; }
.form-message-success { border-color: var(--success); color: var(--success); background: #ecf8f2; }
.form-message-error { border-color: var(--error); color: var(--error); background: #fff0f0; }
.captcha-note { margin: 12px 0 18px; color: var(--error); }
.honeypot-field { position: absolute !important; left: 0 !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.honeypot-field input { position: absolute; inset: 0; width: 1px; height: 1px; margin: 0; padding: 0; border: 0; }

.section.cta-band { width: 100%; max-width: none; margin-inline: 0; padding-inline: 0; color: #fff; background: var(--ink); }
.cta-inner { width: min(100% - 40px, var(--container)); min-height: 190px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: clamp(34px, 5vw, 64px); }
.cta-inner h2 { max-width: 740px; margin-bottom: 0; }
.site-footer { padding-block: 50px 22px; border-top: 5px solid var(--accent); color: #e8edf2; background: #0a131d; }
.footer-inner { display: grid; grid-template-columns: auto minmax(280px, 1fr) auto auto; align-items: start; gap: clamp(28px, 4vw, 52px); }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); }
.footer-label { margin-bottom: 8px !important; color: #ffb17f; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer p { margin: 4px 0 0; }
.site-footer a:not(.button) { text-underline-offset: 3px; }
.footer-navigation { display: grid; gap: 6px; }
.footer-navigation a { color: #e8edf2; text-decoration-color: rgba(255,255,255,.45); }
.footer-navigation a:hover { color: #fff; text-decoration-color: var(--accent); }
.footer-bottom { width: min(100% - 40px, var(--container)); margin: 34px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: #aeb9c4; font-size: .85rem; }

.floating-actions { position: fixed; z-index: 90; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); display: grid; justify-items: end; gap: 10px; }
.whatsapp-button { min-height: 58px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 15px 8px 12px; border: 2px solid #fff; border-radius: 999px; color: #fff; background: #168b49; box-shadow: 0 10px 28px rgba(9,18,27,.28); text-decoration: none; transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.whatsapp-button:hover { background: #08783b; box-shadow: 0 13px 34px rgba(9,18,27,.34); transform: translateY(-2px); }
.whatsapp-button svg { flex: 0 0 26px; width: 26px; height: 26px; }
.whatsapp-button span { display: grid; line-height: 1.1; }
.whatsapp-button strong { font-size: .86rem; }
.whatsapp-button small { margin-top: 3px; font-size: .72rem; }
.back-to-top { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--ink); box-shadow: 0 8px 24px rgba(9,18,27,.24); font-size: 1.35rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, background-color .18s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--accent); }

@media (max-width: 1024px) {
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .phone-link span { display: none; }
    .footer-inner { grid-template-columns: auto 1fr auto; }
    .footer-navigation { display: none; }
}

@media (max-width: 768px) {
    .section, .header-inner, .nav-inner, .footer-inner, .hero-content, .page-hero-content { width: min(100% - 32px, var(--container)); }
    .header-inner { min-height: 72px; }
    .header-actions > .button { display: none; }
    .menu-toggle { display: block; }
    .primary-nav { position: fixed; inset: 72px 0 auto; max-height: 0; overflow: hidden; visibility: hidden; opacity: 0; transition: max-height .25s ease, opacity .2s ease, visibility .2s; }
    .primary-nav.is-open { max-height: calc(100svh - 72px); overflow-y: auto; visibility: visible; opacity: 1; }
    .nav-inner { width: 100%; display: block; padding: 12px 16px 22px; }
    .nav-inner a { min-height: 52px; border-bottom: 1px solid rgba(255,255,255,.14); padding-inline: 8px; }
    .nav-inner a.is-active { border-bottom-color: var(--accent); }
    .language-switcher { justify-content: flex-start; margin: 12px 0 0; padding: 8px 0 0; }
    .hero-carousel { min-height: calc(100svh - 72px); }
    .hero-slide::after { background: linear-gradient(0deg, rgba(9,18,27,.92), rgba(9,18,27,.38)); }
    .hero-content { align-items: flex-end; padding-block: 64px 94px; }
    .carousel-controls { right: 16px; bottom: 18px; }
    .split, .contact-grid, .rfq-layout { grid-template-columns: 1fr; }
    .product-slide, .product-slide.is-active { grid-template-columns: 1fr; }
    .product-slide img { max-height: 390px; order: -1; }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 24px; }
}

@media (max-width: 520px) {
    .section, .header-inner, .footer-inner, .hero-content, .page-hero-content { width: min(100% - 24px, var(--container)); }
    .brand img { width: 145px; }
    .header-actions { gap: 8px; }
    .phone-link { width: 44px; justify-content: center; }
    .hero-actions .button { width: 100%; }
    .benefit-grid, .location-grid, .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .gallery { gap: 6px; }
    .product-carousel, .rfq-form { margin-inline: -4px; padding: 18px; }
    .faq-answer { padding-right: 0; }
    .footer-bottom { width: min(100% - 24px, var(--container)); }
    .floating-actions { right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); }
    .whatsapp-button { min-height: 54px; padding-right: 13px; }
}

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