/* ================================================================
   ALPACA FIESTA 2027 — styles.css
   Landing directa: diseño final visible desde el inicio + animaciones
   ================================================================ */

   :root {
    --cream: #F5EDD6;
    --cream-light: #FAF4E8;
    --brown-dark: #3D1200;
    --brown-mid: #7A3B1E;
    /* Fondo footer + botón enviar; texto “Completa el formulario…” (ES/EN) */
    --brown-footer: #5C2E1A;
    --brown-btn-hover: #4a2614;
    /* Título “Se están tejiendo…” (ES) y su versión EN (negrita) */
    --brown-headline: #3A1C0E;
    --text-primary: #2C1A0E;
    --text-muted: #7F604D;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-soft: cubic-bezier(0.22, 1, 0.32, 1);

    /* Espaciado y safe-area (móviles con notch / home indicator) */
    --pad-x: clamp(0.9rem, 3.2vw, 1.75rem);
    --safe-t: env(safe-area-inset-top, 0px);
    --safe-b: env(safe-area-inset-bottom, 0px);
    --safe-l: env(safe-area-inset-left, 0px);
    --safe-r: env(safe-area-inset-right, 0px);
    /* Zona mínima táctil recomendada (aprox. 44×44px) */
    --touch-min: 2.75rem;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: clamp(0.9375rem, 0.35rem + 1.1vw, 1.0625rem);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: var(--safe-l);
    padding-right: var(--safe-r);
    opacity: 0;
    animation: pageFadeIn 0.9s var(--ease-soft) forwards;
}

/* Accesibilidad: ir al contenido (visible al enfocar con teclado) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0.5rem;
    z-index: 100;
    padding: 0.5rem 0.9rem;
    background: var(--brown-dark);
    color: var(--cream-light);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
}

.skip-link:focus {
    position: fixed;
    left: max(0.5rem, var(--safe-l));
    top: max(0.5rem, var(--safe-t));
    right: auto;
    outline: 2px solid var(--cream);
    outline-offset: 2px;
}

@keyframes pageFadeIn {
    to {
        opacity: 1;
    }
}

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

button,
input,
textarea {
    font: inherit;
}

/* ================================================================
   LANGUAGE
   ================================================================ */

.lang-nav {
    position: fixed;
    top: max(clamp(0.9rem, 2vw, 1.4rem), var(--safe-t));
    right: max(clamp(1rem, 3vw, 2rem), var(--safe-r));
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 0.38rem;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.4rem;
    color: rgba(61, 18, 0, 0.48);
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s var(--ease-out);
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--brown-dark);
}

.lang-sep {
    color: rgba(61, 18, 0, 0.3);
    font-size: 0.62rem;
}

@media (min-width: 769px) {
    .lang-btn {
        min-width: 0;
        min-height: 0;
        padding: 0.2rem 0.1rem;
    }
}

/* ================================================================
   HERO DIRECTO
   ================================================================ */

.landing-page {
    position: relative;
    min-height: 100%;
    width: 100%;
    max-width: 100vw;
    /* Aire entre el formulario (final del hero) y el pie */
    padding-bottom: clamp(2.25rem, 4.5vh, 3.75rem);
    box-sizing: border-box;
}

.hero-static {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding:
        max(clamp(1.3rem, 2.5vh, 2.2rem), var(--safe-t))
        max(var(--pad-x), var(--safe-r))
        max(clamp(1.3rem, 2.5vh, 2.2rem), var(--safe-b))
        max(var(--pad-x), var(--safe-l));
}

/* Fondo alpacas */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("Assets/alpaca-limagallery-1100x734.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(0.04) sepia(0.12) saturate(0.72) contrast(0.78) brightness(1.12);
    opacity: 0;
    transform: scale(1.12);
    animation: heroBgIn 1.8s var(--ease-soft) 0.1s forwards;
    will-change: opacity, transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center,
            rgba(250, 244, 232, 0.48) 0%,
            rgba(250, 244, 232, 0.65) 42%,
            rgba(245, 237, 214, 0.88) 100%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(245, 237, 214, 0.62) 55%,
            rgba(245, 237, 214, 0.86) 100%);
    opacity: 0;
    animation: overlayIn 1.45s var(--ease-soft) 0.2s forwards;
    pointer-events: none;
}

@keyframes heroBgIn {
    to {
        opacity: 0.5;
        transform: scale(1.06);
    }
}

@keyframes overlayIn {
    to {
        opacity: 1;
    }
}

/* Contenedor general */
.hero-shell {
    position: relative;
    z-index: 5;
    width: min(40rem, 92vw);
    min-height: calc(100svh - clamp(3.25rem, 9vh, 5.5rem));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: max(clamp(1.1rem, 2.2vh, 1.5rem), env(safe-area-inset-top, 0));
    padding-bottom: clamp(0.75rem, 1.8vh, 1.5rem);
    margin-inline: auto;
}

/* ================================================================
   MUY PRONTO
   ================================================================ */

.coming-soon-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: clamp(2.1rem, 5vh, 3.3rem);
    opacity: 0;
    transform: translateY(-10px);
    animation: comingSoonIn 1.1s var(--ease-soft) 0.55s forwards;
}

.muy-pronto-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.65rem, 2.5vw, 1.6rem);
    max-width: 100%;
    row-gap: 0.4rem;
}

@media (min-width: 400px) {
    .muy-pronto-badge {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

.badge-line {
    display: block;
    width: clamp(3.1rem, 6vw, 5rem);
    height: 1px;
    background: rgba(61, 18, 0, 0.48);
    transform: scaleX(0);
    transform-origin: center;
    animation: badgeLineIn 0.9s var(--ease-soft) 0.78s forwards;
}

.badge-text {
    display: block;
    color: var(--brown-dark);
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: badgeTextIn 0.9s var(--ease-soft) 0.88s forwards;
}

@keyframes comingSoonIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeLineIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes badgeTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.32em;
    }
}

/* ================================================================
   CONTENIDO
   ================================================================ */

.hero-content {
    width: min(33.75rem, 100%);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-animate {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(5px);
    animation: heroElementIn 1.05s var(--ease-soft) var(--delay, 0s) forwards;
}

@keyframes heroElementIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Logo */
.hero-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    margin-bottom: clamp(0.85rem, 2vh, 1.15rem);
}

.hero-logo {
    width: clamp(190px, 18vw, 290px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 26px rgba(61, 18, 0, 0.13));
}

.hero-location {
    margin-top: 0.2rem;
    color: rgba(61, 18, 0, 0.66);
    font-family: var(--font-serif);
    font-size: clamp(0.66rem, 0.85vw, 0.78rem);
    font-weight: 400;
}

/* Texto */
.headline-block {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(1rem, 2.1vh, 1.35rem);
}

.main-headline {
    color: var(--brown-headline);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 0.4rem + 2.1vw, 1.32rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.section-divider {
    width: 100%;
    height: 1px;
    /* Más aire bajo la línea antes de “Completa el formulario…” (ES/EN) */
    margin: 0.62rem auto clamp(1.05rem, 2.2vh, 1.45rem);
    background: linear-gradient(
        90deg,
        transparent 0%,
        color-mix(in srgb, var(--brown-headline) 50%, transparent) 22%,
        color-mix(in srgb, var(--brown-headline) 50%, transparent) 78%,
        transparent 100%
    );
}

@supports not (color: color-mix(in srgb, white, white)) {
    .section-divider {
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(58, 28, 14, 0.4) 22%,
            rgba(58, 28, 14, 0.4) 78%,
            transparent 100%
        );
    }
}

.form-lead {
    width: min(29.375rem, 100%);
    margin: 0 auto;
    color: var(--brown-footer);
    font-family: var(--font-serif);
    font-size: clamp(0.82rem, 0.35rem + 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.42;
}

/* ================================================================
   FORMULARIO
   ================================================================ */

.contact-form {
    width: min(28.4rem, 100%);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 100%;
}

.field-group {
    width: 100%;
}

.field-group input,
.field-group textarea {
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid rgba(61, 18, 0, 0.09);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    outline: none;
    padding: 0.68rem 0.82rem;
    font-family: var(--font-serif);
    font-size: max(1rem, clamp(0.78rem, 0.95vw, 0.9rem));
    -webkit-appearance: none;
    appearance: none;
    transition:
        background 0.24s var(--ease-out),
        border-color 0.24s var(--ease-out),
        box-shadow 0.24s var(--ease-out),
        transform 0.18s var(--ease-out);
}

.field-group textarea {
    min-height: 6.5rem;
    resize: vertical;
    line-height: 1.45;
    font-size: max(1rem, clamp(0.78rem, 0.95vw, 0.9rem));
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(61, 18, 0, 0.42);
}

.field-group input:focus,
.field-group textarea:focus {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(61, 18, 0, 0.28);
    box-shadow: 0 0 0 3px rgba(61, 18, 0, 0.055);
    transform: translateY(-1px);
}

.form-feedback {
    min-height: 1.1em;
    text-align: center;
    font-size: clamp(0.68rem, 0.8vw, 0.78rem);
    font-family: var(--font-sans);
}

.form-feedback:empty {
    display: none;
}

.form-feedback.sending {
    color: var(--text-muted);
}

.form-feedback.success {
    color: #3A6B40;
    font-weight: 600;
}

.form-feedback.error {
    color: #963030;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    min-height: var(--touch-min);
    border: none;
    border-radius: 0;
    background: var(--brown-footer);
    color: var(--cream-light);
    cursor: pointer;
    padding: 0.82rem 1rem;
    font-family: var(--font-serif);
    font-size: max(1rem, clamp(0.78rem, 0.95vw, 0.9rem));
    font-weight: 600;
    letter-spacing: 0.02em;
    transition:
        background 0.24s var(--ease-out),
        transform 0.16s var(--ease-out),
        box-shadow 0.24s var(--ease-out);
}

.submit-btn:hover {
    background: var(--brown-btn-hover);
    box-shadow: 0 10px 24px rgba(92, 46, 26, 0.25);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: scale(0.99);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ================================================================
   FOOTER
   ================================================================ */

.page-footer {
    position: relative;
    z-index: 5;
}

/* Bloque marrón: CTA + redes (la franja AIA va abajo, fuera de esto) */
.footer-main {
    background-color: var(--brown-footer);
    color: rgba(245, 237, 214, 0.9);
    padding:
        max(clamp(2.75rem, 5.5vw, 5rem), 2rem)
        max(clamp(1.25rem, 4vw, 2rem), var(--safe-r))
        max(clamp(2.25rem, 4.5vw, 4rem), 1.5rem)
        max(clamp(1.25rem, 4vw, 2rem), var(--safe-l));
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(2.5rem, 6vw, 4.5rem);
    row-gap: clamp(1.5rem, 3vw, 2rem);
    max-width: min(1000px, 92vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* CTA y columnas de redes alineados al centro vertical (referencia) */
    padding-block: clamp(2.5rem, 4.5vh, 3.5rem);
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: stretch;
}

.footer-cta {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: rgba(245, 237, 214, 0.95);
    margin-bottom: 0.9rem;
}

.footer-sub {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1.4vw, 0.8rem);
    font-weight: 300;
    color: rgba(245, 237, 214, 0.5);
    line-height: 1.6;
    max-width: 28rem;
}

.footer-left {
    min-width: 0;
    text-align: left;
    justify-self: end;
    align-self: center;
    max-width: 28rem;
    padding-right: clamp(0.25rem, 1.5vw, 1.25rem);
}

.footer-right {
    min-width: 0;
    justify-self: start;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 28rem;
    padding-left: clamp(0.25rem, 1.5vw, 1.25rem);
}

.social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(245, 237, 214, 0.09);
    color: rgba(245, 237, 214, 0.8);
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.social-row:last-child {
    border-bottom: none;
}

.social-row:hover {
    color: rgba(245, 237, 214, 1);
    transform: translateX(2px);
}

.s-icon {
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    opacity: 0.75;
    flex-shrink: 0;
}

.s-name {
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 5rem;
    flex-shrink: 0;
}

.s-handle {
    font-size: 0.72rem;
    color: rgba(245, 237, 214, 0.45);
    flex: 1;
    text-align: right;
}

.s-arrow {
    font-size: 0.6rem;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.social-row:hover .s-arrow {
    opacity: 0.85;
    transform: translate(2px, -2px);
}

/* Franja aparte bajo el marrón: fondo crema, legal en marrón suave (referencia) */
.footer-bottom {
    width: 100%;
    background: var(--cream);
    text-align: center;
    padding:
        max(clamp(0.85rem, 2vh, 1.1rem), 0.75rem)
        max(clamp(1rem, 4vw, 2rem), var(--safe-r))
        max(clamp(1.1rem, 2.2vh, 1.4rem), var(--safe-b))
        max(clamp(1rem, 4vw, 2rem), var(--safe-l));
}

.footer-bottom .footer-legal,
.footer-legal {
    font-family: var(--font-sans);
    font-size: clamp(0.56rem, 1.1vw, 0.64rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    color: #6d4a36;
    color: color-mix(in srgb, var(--brown-footer) 78%, #3a2a1f 22%);
    text-transform: uppercase;
    margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 760px) {
    .landing-page {
        padding-bottom: clamp(1.9rem, 3.8vh, 3.25rem);
    }

    .hero-static {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-shell {
        min-height: auto;
        width: min(520px, 92vw);
    }

    .coming-soon-wrap {
        margin-bottom: 2.2rem;
    }

    .hero-logo {
        width: clamp(170px, 42vw, 220px);
    }

    .main-headline {
        color: var(--brown-headline);
        font-size: clamp(1rem, 3.2vw, 1.18rem);
    }

    .form-lead {
        color: var(--brown-footer);
        font-size: clamp(0.82rem, 2.6vw, 0.95rem);
    }

    .section-divider {
        margin: 0.6rem auto clamp(1rem, 2.1vh, 1.35rem);
    }

    .contact-form {
        width: min(420px, 100%);
    }
}

@media (max-width: 640px) {
    .landing-page {
        padding-bottom: clamp(1.75rem, 3.2vh, 2.75rem);
    }

    .footer-main {
        padding: max(2.5rem, 5vh) 1.25rem max(2.25rem, 4.5vh) 1.25rem;
    }

    .footer-cta {
        font-size: 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        max-width: min(24rem, 100%);
        padding-block: clamp(1.25rem, 3vh, 2rem);
        row-gap: 2.25rem;
        column-gap: 0;
        align-items: stretch;
        align-content: start;
    }

    .footer-left,
    .footer-right {
        justify-self: center;
        align-self: start;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-left {
        text-align: center;
    }

    .footer-sub {
        max-width: none;
    }

    .s-handle {
        display: none;
    }
}

@media (max-width: 440px) {
    .landing-page {
        padding-bottom: clamp(1.6rem, 3vh, 2.5rem);
    }

    .lang-nav {
        right: 1rem;
        top: 0.85rem;
    }

    .hero-static {
        padding-top: 3.3rem;
        padding-bottom: 3rem;
    }

    .badge-line {
        width: 2rem;
    }

    .badge-text {
        font-size: 0.62rem;
        letter-spacing: 0.24em;
        text-indent: 0.24em;
    }

    .coming-soon-wrap {
        margin-bottom: 1.8rem;
    }

    .hero-logo {
        width: 165px;
    }

    .hero-location {
        font-size: 0.62rem;
    }

    .main-headline {
        color: var(--brown-headline);
        font-size: 1rem;
        line-height: 1.25;
    }

    .form-lead {
        color: var(--brown-footer);
        font-size: 0.78rem;
        line-height: 1.32;
    }

    .section-divider {
        margin: 0.48rem auto clamp(0.9rem, 2.2vh, 1.2rem);
    }

    .headline-block {
        margin-bottom: 0.9rem;
    }

    .field-group input,
    .field-group textarea {
        padding: 0.58rem 0.68rem;
        font-size: 0.76rem;
    }

    .field-group textarea {
        min-height: 4.4rem;
    }

    .submit-btn {
        padding: 0.68rem 0.85rem;
        font-size: 0.76rem;
    }
}

/* Móviles en horizontal: evitar forzar 100vh y recortar */
@media (max-height: 520px) and (orientation: landscape) {
    .hero-static {
        min-height: auto;
        padding-top: max(0.75rem, var(--safe-t));
        padding-bottom: max(0.75rem, var(--safe-b));
    }

    .hero-shell {
        min-height: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .coming-soon-wrap {
        margin-bottom: 0.85rem;
    }

    .muy-pronto-badge {
        flex-wrap: wrap;
    }

    .hero-logo {
        max-height: min(32vh, 200px);
        width: auto;
        max-width: min(50vw, 220px);
    }

    .headline-block {
        margin-bottom: 0.6rem;
    }

    .section-divider {
        margin: 0.45rem auto clamp(0.75rem, 1.8vh, 1.05rem);
    }
}

/* Pantallas de poca altura (escritorio / tablet) */
@media (max-height: 760px) and (min-width: 761px) {
    .hero-static {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-shell {
        min-height: auto;
    }

    .coming-soon-wrap {
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        width: clamp(160px, 15vw, 230px);
    }

    .hero-logo-block {
        margin-bottom: 0.6rem;
    }

    .main-headline {
        color: var(--brown-headline);
        font-size: 1rem;
    }

    .form-lead {
        color: var(--brown-footer);
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .headline-block {
        margin-bottom: 0.75rem;
    }

    .section-divider {
        margin: 0.5rem auto 0.85rem;
    }

    .contact-form {
        width: min(420px, 100%);
        gap: 0.42rem;
    }

    .field-group input,
    .field-group textarea {
        padding: 0.52rem 0.68rem;
        font-size: 0.76rem;
    }

    .field-group textarea {
        min-height: 4rem;
    }

    .submit-btn {
        padding: 0.62rem 0.9rem;
    }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */

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

    body,
    .hero-bg,
    .hero-overlay,
    .coming-soon-wrap,
    .badge-line,
    .badge-text,
    .hero-animate {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
    }
}