:root {
    --bg: #ffffff;
    --bg-soft: #fff5f5;
    --surface: #ffffff;
    --surface-dark: #171717;
    --surface-dark-soft: #292929;
    --text: #202020;
    --text-soft: #676767;
    --line: #eadada;
    --dark: #171717;
    --accent: #f51520;
    --accent-dark: #ce0d16;
    --success: #f51520;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow: 0 18px 45px rgba(80, 12, 16, 0.14);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

code {
    padding: 3px 7px;
    border-radius: 6px;
    background: #fff0f0;
    font-size: 0.9em;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 10px 14px;
    color: #fff;
    background: var(--dark);
    border-radius: 8px;
}

.skip-link:focus {
    top: 16px;
}

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

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-dark {
    color: #fff;
    background: var(--surface-dark);
}

.section-dark .eyebrow,
.section-dark .service-badge,
.section-dark .process-grid span {
    color: #fff;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.72);
}

.align-left {
    margin-inline: 0;
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    color: #fff;
    background: var(--dark);
}

.btn-outline {
    color: var(--accent-dark);
    border-color: rgba(245, 21, 32, 0.4);
    background: transparent;
}

.btn-small {
    min-height: 42px;
    padding: 9px 17px;
    color: #fff !important;
    background: var(--accent);
}

.btn-large {
    min-height: 58px;
    padding-inline: 28px;
}

.btn-block {
    width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(23, 23, 23, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 230px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.brand img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    object-fit: contain;
}

.brand-fallback {
    display: inline-flex;
    margin-left: 11px;
    font-size: 1rem;
    line-height: 1.05;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav > a:not(.btn) {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 700;
}

.main-nav > a:not(.btn):hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-background,
.hero-background picture,
.hero-background img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background picture {
    display: block;
}

.hero-background img {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(53,50,92,0.96) 0%, rgba(53,50,92,0.79) 52%, rgba(53,50,92,0.38) 100%),
        linear-gradient(0deg, rgba(53,50,92,0.58), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 64px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-points span::before {
    content: "✓";
    margin-right: 8px;
    color: #fff;
}

.hero-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(23, 23, 23, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-card-label {
    margin: 0 0 10px;
    color: #fff;
    font-weight: 800;
}

.hero .eyebrow,
.cta-card .eyebrow,
.pricing-card.featured .pricing-label {
    color: #fff;
}

.hero .btn-primary,
.pricing-card.featured .btn-primary,
.cta-card .btn-primary {
    color: var(--dark);
    background: #fff;
}

.hero .btn-primary:hover,
.pricing-card.featured .btn-primary:hover,
.cta-card .btn-primary:hover {
    background: #fff0f0;
}

.hero-card .check-list li::before,
.pricing-card.featured .check-list li::before {
    color: #fff;
}

.hero-card h2 {
    margin: 0 0 18px;
    font-size: 1.8rem;
    line-height: 1.2;
}

.hero-card small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.check-list {
    padding: 0;
    margin: 18px 0 24px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
    margin: 9px 0;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    color: #fff;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    padding: 26px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.problem-grid,
.service-grid,
.pricing-grid,
.gallery-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.problem-grid {
    grid-template-columns: repeat(3, 1fr);
}

.problem-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.icon-box {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    color: #fff;
    background: var(--dark);
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 900;
}

.problem-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.problem-card p {
    margin: 0;
    color: var(--text-soft);
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: var(--surface-dark-soft);
}

.service-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

.service-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--dark);
}

.service-card-featured .service-image {
    aspect-ratio: auto;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-content {
    padding: 26px;
}

.service-content h3 {
    margin: 10px 0 8px;
    font-size: 1.4rem;
}

.service-content p,
.service-content li {
    color: rgba(255, 255, 255, 0.72);
}

.service-content ul {
    padding-left: 19px;
    margin-bottom: 0;
}

.service-badge {
    display: inline-flex;
    padding: 5px 10px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 70px;
}

.image-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff0f0;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.color-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.color-tags span {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.pricing-card.featured {
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.pricing-card.featured .check-list {
    color: rgba(255, 255, 255, 0.78);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 24px;
    transform: translateY(-50%);
    padding: 7px 12px;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.pricing-label {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.price {
    margin: 24px 0;
    color: var(--text-soft);
}

.featured .price {
    color: rgba(255, 255, 255, 0.72);
}

.price strong {
    display: block;
    margin-top: 6px;
    color: inherit;
    font-size: 1.6rem;
}

.price-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f8dddd;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff5f5;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item figcaption {
    padding: 15px 18px;
    font-weight: 800;
}

.centered-action {
    margin-top: 38px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-grid li {
    padding: 26px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: var(--surface-dark-soft);
}

.process-grid span {
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 900;
}

.process-grid h3 {
    margin: 16px 0 8px;
}

.process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.feature-list {
    padding: 0;
    margin: 26px 0 30px;
    list-style: none;
}

.feature-list li {
    display: grid;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list span {
    color: var(--text-soft);
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.testimonial-card p {
    font-size: 1.02rem;
}

.testimonial-card footer {
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.1em;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    padding: 18px 0;
    border: 0;
    color: var(--text);
    background: transparent;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    flex: 0 0 auto;
    margin-left: 18px;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-answer > p {
    overflow: hidden;
    margin: 0;
    color: var(--text-soft);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
    padding-bottom: 22px;
}

.cta-section {
    padding: 20px 0 96px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    color: #fff;
    background: var(--dark);
    border-radius: var(--radius-lg);
}

.cta-card h2 {
    max-width: 650px;
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.cta-card p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 64px 0 110px;
    color: rgba(255, 255, 255, 0.78);
    background: #101010;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 50px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.footer-grid h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1rem;
}

.footer-grid a:not(.footer-brand),
.footer-grid p {
    display: block;
    margin: 7px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 18px 10px 10px;
    color: #fff;
    background: var(--success);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(80, 12, 16, 0.28);
    font-weight: 800;
}

.wa-icon {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    color: var(--success);
    background: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-card {
        max-width: 620px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .service-grid,
    .pricing-grid,
    .gallery-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-featured {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split-layout,
    .faq-layout {
        gap: 45px;
    }
}

@media (max-width: 820px) {
    .main-nav {
        position: fixed;
        inset: 76px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: var(--dark);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 14px;
    }

    .menu-toggle {
        display: block;
    }

    .split-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .reverse-mobile > :first-child {
        order: 2;
    }

    .reverse-mobile > :last-child {
        order: 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > :first-child {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 72px;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        min-width: 0;
        font-size: 0.88rem;
    }

    .brand img {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .brand-fallback {
        margin-left: 9px;
        font-size: 0.78rem;
    }

    .main-nav {
        inset-top: 68px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-background img {
        object-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(53,50,92,0.82) 0%, rgba(53,50,92,0.9) 55%, rgba(53,50,92,0.98) 100%);
    }

    .hero-content {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .hero h1 {
        /* font-size: clamp(2.55rem, 14vw, 4rem); */
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 24px;
        border-radius: 20px;
    }

    .trust-grid,
    .problem-grid,
    .service-grid,
    .gallery-grid,
    .testimonial-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .service-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .service-card-featured .service-image {
        aspect-ratio: 3 / 2;
    }

    .service-image {
        aspect-ratio: 4 / 3;
    }

    .service-image img {
        object-position: center;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .image-frame {
        border-radius: 20px;
        aspect-ratio: 4 / 3;
    }

    .image-frame img {
        height: 100%;
        aspect-ratio: auto;
        object-position: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item img {
        aspect-ratio: 4 / 3;
        object-position: center;
    }

    .gallery-item figcaption {
        padding: 11px 12px;
        font-size: 0.83rem;
    }

    .cta-card {
        flex-direction: column;
        align-items: stretch;
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid > :first-child {
        grid-column: auto;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-sticky-cta {
        position: fixed;
        inset: auto 0 0;
        z-index: 998;
        display: block;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(23, 23, 23, 0.97);
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-sticky-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        color: #fff;
        background: var(--success);
        border-radius: 999px;
        font-weight: 900;
    }

    .site-footer {
        padding-bottom: 130px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
