/* ================================================================
   landing.css – Global Digital Assist · Página Principal
   Estrategia: mobile-first + breakpoints tablet / desktop / wide
   Breakpoints:
     xs  : < 480px   (teléfonos pequeños)
     sm  : 480–767px (teléfonos grandes)
     md  : 768–991px (tablets)
     lg  : 992–1199px(laptops)
     xl  : ? 1200px  (escritorio)
   ================================================================ */

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
    --lp-blue: #1A73E8;
    --lp-green: #2C8C3E;
    --lp-gold: #C8A95A;
    --lp-dark: #333333;
    --lp-medium: #666666;
    --lp-light-text: #999999;
    --lp-bg: #F5F7FA;
    --lp-white: #FFFFFF;
    --lp-header-h: 64px;
    --lp-radius: 8px;
}

/* ================================================================
   RESET LOCAL
   ================================================================ */
.lp-root *, .lp-root *::before, .lp-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lp-root {
    font-family: 'Inter', sans-serif;
    color: var(--lp-dark);
    line-height: 1.6;
    /* Use clip instead of hidden: prevents horizontal overflow
       without breaking vertical touch scroll on mobile */
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================================
   CONTAINER
   ================================================================ */
.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 480px) {
    .lp-container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .lp-container {
        padding: 0 28px;
    }
}

@media (min-width: 1200px) {
    .lp-container {
        padding: 0 20px;
    }
}

/* ================================================================
   HEADER
   ================================================================ */
.lp-header {
    background: var(--lp-white);
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--lp-header-h);
}

.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

@media (min-width: 480px) {
    .lp-header-inner {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .lp-header-inner {
        padding: 0 28px;
    }
}

/* ?? Logo ?? */
.lp-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--lp-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .lp-logo span {
        color: var(--lp-blue);
    }

        .lp-logo span.green {
            color: var(--lp-green);
        }

/* ?? Hamburguesa (visible solo móvil/tablet) ?? */
.lp-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--lp-dark);
    border-radius: 4px;
    transition: background .2s;
}

    .lp-mobile-toggle:hover {
        background: var(--lp-bg);
    }

/* ?? Nav desktop (oculto en móvil) ?? */
.lp-nav-list {
    display: none; /* oculto por defecto (móvil) */
    list-style: none;
}

    /* Menú móvil desplegado */
    .lp-nav-list.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        position: fixed;
        top: var(--lp-header-h);
        left: 0;
        right: 0;
        background: var(--lp-white);
        padding: 16px 0 20px;
        box-shadow: 0 6px 18px rgba(0,0,0,.12);
        z-index: 999;
        animation: lpSlideDown .25s ease;
    }

@keyframes lpSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-nav-list li {
    width: 100%;
    text-align: center;
}

.lp-nav-list.open li {
    margin: 0;
}

.lp-nav-list a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--lp-dark);
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s, background .2s;
    border-radius: 4px;
}

    .lp-nav-list a:hover {
        color: var(--lp-blue);
        background: var(--lp-bg);
    }

/* ?? Desktop: nav horizontal ?? */
@media (min-width: 992px) {
    .lp-mobile-toggle {
        display: none;
    }

    .lp-nav-list {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        animation: none;
    }

        .lp-nav-list li {
            width: auto;
            text-align: left;
        }

        .lp-nav-list a {
            padding: 8px 12px;
        }
}

/* ?? Botón CTA ?? */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    border: none;
    font-weight: 600;
    border-radius: var(--lp-radius);
    transition: background .25s, transform .2s;
    white-space: nowrap;
}

.lp-btn-blue {
    background: var(--lp-blue);
    color: var(--lp-white) !important;
    padding: 10px 20px;
    font-size: .9rem;
}

    .lp-btn-blue:hover {
        background: #1557b0;
    }

    .lp-btn-blue:disabled {
        background: #8fa5b8;
        cursor: not-allowed;
    }

/* ================================================================
   HERO
   ================================================================ */
.lp-hero {
    background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1770&q=80') center / cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--lp-white);
    text-align: center;
    padding-top: var(--lp-header-h);
}

.lp-hero-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 16px 56px;
}

    .lp-hero-content h1 {
        font-size: clamp(1.6rem, 5vw, 3rem);
        font-weight: 700;
        margin-bottom: 18px;
        color: #fff;
        line-height: 1.2;
    }

    .lp-hero-content > p {
        font-size: clamp(.95rem, 2vw, 1.2rem);
        margin-bottom: 28px;
        color: rgba(255,255,255,.9);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.lp-hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .lp-hero-btns a {
        padding: 13px 28px;
        border-radius: var(--lp-radius);
        font-weight: 600;
        text-decoration: none;
        font-size: clamp(.9rem, 2vw, 1rem);
        transition: all .3s;
        min-width: 160px;
        text-align: center;
    }

.lp-hero-btn-primary {
    background: var(--lp-blue);
    color: #fff;
}

    .lp-hero-btn-primary:hover {
        background: #1557b0;
        transform: translateY(-2px);
        color: #fff;
    }

.lp-hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .lp-hero-btn-outline:hover {
        background: #fff;
        color: var(--lp-dark);
    }

/* En xs los botones hero ocupan ancho completo */
@media (max-width: 479px) {
    .lp-hero-btns a {
        width: 100%;
        min-width: unset;
    }
}

/* ================================================================
   SECTIONS — base
   ================================================================ */
.lp-section {
    padding: 64px 0;
}

.lp-section-gray {
    background: var(--lp-bg);
}

@media (min-width: 768px) {
    .lp-section {
        padding: 80px 0;
    }
}

.lp-section-title {
    text-align: center;
    margin-bottom: 44px;
}

    .lp-section-title h2 {
        font-size: clamp(1.5rem, 3vw + .4rem, 2.5rem);
        margin-bottom: 12px;
        color: var(--lp-dark);
    }

    .lp-section-title p {
        font-size: clamp(.9rem, 1.5vw, 1.05rem);
        color: var(--lp-medium);
        max-width: 680px;
        margin: 0 auto;
    }

/* ================================================================
   SERVICIOS
   — xs (< 480): 1 columna
   — sm (480-767): 2 columnas
   — lg (? 992): 3 columnas
   ================================================================ */
.lp-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lp-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.lp-service-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 28px 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

    .lp-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 28px rgba(0,0,0,.11);
    }

.lp-service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--lp-blue);
}

.lp-service-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 10px;
    color: var(--lp-dark);
}

.lp-service-card p {
    color: var(--lp-medium);
    font-size: .9rem;
    line-height: 1.6;
}

/* ================================================================
   PROYECTOS — scroll horizontal adaptativo
   ================================================================ */
.lp-projects-scroll {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 14px;
    /* Permite que en mobile se deslice bien */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-blue) var(--lp-bg);
}

    .lp-projects-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .lp-projects-scroll::-webkit-scrollbar-track {
        background: var(--lp-bg);
        border-radius: 4px;
    }

    .lp-projects-scroll::-webkit-scrollbar-thumb {
        background: var(--lp-blue);
        border-radius: 4px;
    }

.lp-project-card {
    flex: 0 0 260px; /* xs */
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: transform .3s;
}

@media (min-width: 480px) {
    .lp-project-card {
        flex: 0 0 290px;
    }
}

@media (min-width: 768px) {
    .lp-project-card {
        flex: 0 0 320px;
    }
}

.lp-project-card:hover {
    transform: translateY(-8px);
}

.lp-project-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.lp-project-body {
    padding: 18px;
}

    .lp-project-body h3 {
        font-size: 1.05rem;
        margin-bottom: 7px;
        color: var(--lp-dark);
    }

    .lp-project-body p {
        color: var(--lp-medium);
        font-size: .88rem;
        line-height: 1.5;
    }

.lp-tag {
    display: inline-block;
    background: var(--lp-bg);
    color: var(--lp-blue);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ================================================================
   NOSOTROS
   — xs/sm: columna única
   — md+: dos columnas (texto | imagen)
   ================================================================ */
.lp-about-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@media (min-width: 768px) {
    .lp-about-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .lp-about-text {
        flex: 1 1 55%;
    }

    .lp-about-img {
        flex: 1 1 40%;
    }
}

.lp-about-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 16px;
    color: var(--lp-dark);
}

.lp-about-text p {
    margin-bottom: 14px;
    color: var(--lp-medium);
    line-height: 1.75;
    font-size: clamp(.88rem, 1.5vw, .97rem);
}

.lp-values-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 480px) {
    .lp-values-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-value-item {
    background: var(--lp-bg);
    padding: 14px 10px;
    border-radius: var(--lp-radius);
    text-align: center;
}

    .lp-value-item i {
        font-size: 1.4rem;
        color: var(--lp-blue);
        display: block;
        margin-bottom: 7px;
    }

    .lp-value-item h4 {
        font-size: .9rem;
        color: var(--lp-dark);
        font-weight: 600;
    }

.lp-about-img img {
    width: 100%;
    border-radius: var(--lp-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* ================================================================
   PROCESO
   — xs/sm: columna única (sin línea)
   — md: 3 columnas sin línea
   — lg+: 3 columnas con línea decorativa
   ================================================================ */
.lp-process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

@media (min-width: 576px) {
    .lp-process-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* línea decorativa solo cuando hay suficiente espacio horizontal */
@media (min-width: 992px) {
    .lp-process-row::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--lp-blue), var(--lp-green));
        z-index: 1;
    }
}

.lp-process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.lp-process-icon {
    width: 80px;
    height: 80px;
    background: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

    .lp-process-icon i {
        font-size: 1.7rem;
        color: var(--lp-blue);
    }

.lp-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--lp-dark);
}

.lp-process-step p {
    color: var(--lp-medium);
    font-size: .9rem;
    line-height: 1.6;
}

/* ================================================================
   TESTIMONIOS
   — xs: 1 columna
   — md: 2 columnas
   — lg: 3 columnas
   ================================================================ */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .lp-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.lp-testimonial-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 26px 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
}

    .lp-testimonial-card:hover {
        transform: translateY(-8px);
    }

.lp-stars {
    color: var(--lp-gold);
    margin-bottom: 12px;
    font-size: .95rem;
}

.lp-testimonial-card > p {
    color: var(--lp-medium);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.65;
    font-size: .93rem;
    flex: 1;
}

.lp-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .lp-t-author img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .lp-t-author h4 {
        font-size: .92rem;
        margin: 0 0 2px;
        color: var(--lp-dark);
    }

    .lp-t-author p {
        color: var(--lp-light-text);
        font-size: .82rem;
        margin: 0;
        font-style: normal;
    }

/* ================================================================
   FAQ
   ================================================================ */
.lp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-faq-item {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.lp-faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: clamp(.88rem, 1.5vw, .97rem);
    color: var(--lp-dark);
    user-select: none;
    gap: 12px;
}

    .lp-faq-question i {
        transition: transform .3s;
        color: var(--lp-blue);
        flex-shrink: 0;
        font-size: .9rem;
    }

.lp-faq-item.open .lp-faq-question i {
    transform: rotate(180deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 20px;
    color: var(--lp-medium);
    line-height: 1.7;
    font-size: .92rem;
}

.lp-faq-item.open .lp-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* ================================================================
   CONTACTO
   — xs/sm: columna única
   — md+: dos columnas
================================================================ */
.lp-contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .lp-contact-container {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
    }

    .lp-contact-form {
        flex: 1 1 55%;
    }

    .lp-contact-info {
        flex: 1 1 40%;
    }
}

.lp-form-group {
    margin-bottom: 16px;
}

    .lp-form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        color: var(--lp-dark);
        font-size: .88rem;
    }

.lp-input {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #ddd;
    border-radius: var(--lp-radius);
    font-family: 'Inter', sans-serif;
    font-size: .93rem;
    transition: border-color .2s, box-shadow .2s;
    color: var(--lp-dark);
    background: #fff;
    /* tamaño mínimo táctil en móvil */
    min-height: 44px;
}

    .lp-input:focus {
        outline: none;
        border-color: var(--lp-blue);
        box-shadow: 0 0 0 3px rgba(26,115,232,.12);
    }

.lp-textarea {
    resize: vertical;
    min-height: 120px;
}

.lp-form-success {
    background: var(--lp-green);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--lp-radius);
    margin-bottom: 18px;
    font-weight: 600;
    font-size: .92rem;
}

.lp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

    .lp-contact-item i {
        font-size: 1.4rem;
        color: var(--lp-blue);
        width: 26px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .lp-contact-item.green i {
        color: var(--lp-green);
    }

    .lp-contact-item h3 {
        font-size: .97rem;
        margin: 0 0 2px;
        color: var(--lp-dark);
    }

    .lp-contact-item p {
        color: var(--lp-medium);
        margin: 0;
        font-size: .88rem;
    }

.lp-map {
    margin-top: 24px;
    border-radius: var(--lp-radius);
    overflow: hidden;
    height: 260px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

@media (min-width: 768px) {
    .lp-map {
        height: 300px;
    }
}

.lp-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ================================================================
   WHATSAPP FLOTANTE
   ================================================================ */
.lp-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.7rem;
    box-shadow: 0 5px 18px rgba(0,0,0,.22);
    z-index: 1100;
    transition: transform .3s;
    text-decoration: none;
}

@media (min-width: 480px) {
    .lp-whatsapp {
        bottom: 22px;
        right: 22px;
        width: 60px;
        height: 60px;
    }
}

.lp-whatsapp:hover {
    transform: scale(1.1);
}

/* ================================================================
   FOOTER
   — xs/sm: columna única
   — md: 2 columnas
   — lg: 4 columnas
   ================================================================ */
.lp-footer {
    background: var(--lp-dark);
    color: #ccc;
    padding: 48px 0 20px;
}

@media (min-width: 768px) {
    .lp-footer {
        padding: 60px 0 20px;
    }
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

@media (min-width: 576px) {
    .lp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 992px) {
    .lp-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.lp-footer-col h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

    .lp-footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 36px;
        height: 3px;
        background: var(--lp-gold);
    }

.lp-footer-col p {
    color: #ccc;
    margin-bottom: 14px;
    font-size: .88rem;
    line-height: 1.65;
}

.lp-footer-col ul {
    list-style: none;
}

    .lp-footer-col ul li {
        margin-bottom: 9px;
        font-size: .88rem;
    }

        .lp-footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color .2s;
        }

            .lp-footer-col ul li a:hover {
                color: #fff;
            }

.lp-footer-icon {
    color: var(--lp-gold) !important;
    margin-right: 8px;
}

.lp-footer-badge {
    display: inline-block;
    background: var(--lp-gold);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 600;
    margin-top: 14px;
}

.lp-footer-logo {
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.lp-social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

    .lp-social-links a {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        text-decoration: none;
        transition: background .2s;
        font-size: .9rem;
    }

        .lp-social-links a:hover {
            background: var(--lp-blue);
        }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 18px;
    text-align: center;
    color: #aaa;
    font-size: .84rem;
    line-height: 1.7;
}

    .lp-footer-bottom a {
        color: #aaa;
        text-decoration: none;
    }

        .lp-footer-bottom a:hover {
            color: #fff;
        }

/* En mobile el pipe separator se ve raro: lo ponemos en bloque */
@media (max-width: 479px) {
    .lp-footer-bottom p {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
}

/* ================================================================
   ANIMACIÓN FADE-IN
   ================================================================ */
.lp-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

    .lp-fade.lp-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .lp-fade, .lp-fade.lp-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
