/* --- VIDEO REPLACEMENT (Mobile) --- */
.mobile-hero-video {
    display: none;
    /* Hidden by default on Desktop */
}

/* --- Interactive Hero Logo Container (Text + Logo) --- */
.interactive-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.interactive-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    cursor: default;
    user-select: none;
    position: relative;
    z-index: 10;
    overflow: visible !important;
    transform: translateX(-80px);
    /* User requested shift */
}

.logo-text {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 70px);
    font-weight: 100;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.1;
    z-index: 10;
}

.logo-intro {
    margin-bottom: 90px;
}

.logo-outro {
    margin-top: 200px;
}

/* Base Responsive Logic for Characters */
.logo-char {
    position: relative;
    display: inline-block;
    height: clamp(80px, 18vw, 220px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    transform-origin: center center;
    overflow: visible !important;
}

.char-img {
    height: 100%;
    width: auto;
    display: block;
    pointer-events: none;
}

/* Base Tagline Logic (Large Desktop > 1980px) */
/* Aligned visually frame-left 'E' to frame-right 'I' */
.logo-tagline {
    position: absolute;
    bottom: -90px;
    left: 40%;
    margin-left: 171px;
    transform: translateX(-60%);
    width: clamp(562px, 123vw, 1420px);
    height: auto;
    opacity: 1;
    z-index: 5;
    pointer-events: none;
}

.logo-space {
    width: clamp(1rem, 2vw, 30px);
}

/* Hover Effect */
.logo-char:hover,
.logo-char.active {
    z-index: 20;
}

/* --- REVEAL ELEMENTS (Responsive Values) --- */
.char-reveal {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom center;
    width: 350px;
    height: 450px;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.1s ease;
    z-index: 50;
}

.logo-char:hover .char-reveal,
.logo-char.active .char-reveal {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
    z-index: 50;
}

.char-reveal-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 450px;
    z-index: 50;
    pointer-events: none;
}

/* Layers */
.reveal-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    transform: scaleY(0);
    transform-origin: bottom center;
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s ease;
}

.logo-char:hover .reveal-layer,
.logo-char.active .reveal-layer {
    transform: scaleY(1);
    opacity: 1;
}

/* Layer Delays */
.logo-char:hover .reveal-layer:nth-child(1),
.logo-char.active .reveal-layer:nth-child(1) {
    transition-delay: 0.00s;
    z-index: 10;
}

.logo-char:hover .reveal-layer:nth-child(2),
.logo-char.active .reveal-layer:nth-child(2) {
    transition-delay: 0.05s;
    z-index: 12;
}

.logo-char:hover .reveal-layer:nth-child(3),
.logo-char.active .reveal-layer:nth-child(3) {
    transition-delay: 0.10s;
    z-index: 14;
}

.logo-char:hover .reveal-layer:nth-child(4),
.logo-char.active .reveal-layer:nth-child(4) {
    transition-delay: 0.15s;
    z-index: 16;
}

.logo-char:hover .reveal-layer:nth-child(5),
.logo-char.active .reveal-layer:nth-child(5) {
    transition-delay: 0.20s;
    z-index: 5;
}

.logo-char:hover .reveal-layer:nth-child(6),
.logo-char.active .reveal-layer:nth-child(6) {
    transition-delay: 0.25s;
    z-index: 4;
}

.logo-char:hover .reveal-layer:nth-child(7),
.logo-char.active .reveal-layer:nth-child(7) {
    transition-delay: 0.30s;
    z-index: 3;
}

.logo-char:hover .reveal-layer:nth-child(8),
.logo-char.active .reveal-layer:nth-child(8) {
    transition-delay: 0.35s;
}

/* Reveal Text & Arrow */
.reveal-text {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 75px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    pointer-events: none;
    max-width: none !important;
}

.reveal-arrow {
    position: absolute;
    width: auto;
    height: 120px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    pointer-events: none;
    z-index: 101;
}

.logo-char:hover .reveal-text,
.logo-char:hover .reveal-arrow,
.logo-char.active .reveal-text,
.logo-char.active .reveal-arrow {
    opacity: 1;
}

/* --- SPECIFIC ADJUSTMENTS --- */

/* E (1) */
.logo-char[data-char="E"]:nth-child(1) {
    transform: translateX(-10px);
}

.logo-char[data-char="E"]:nth-child(1) .char-reveal {
    width: 262px !important;
    height: 338px !important;
    bottom: -90px !important;
}

.logo-char[data-char="E"]:nth-child(1) .reveal-text {
    top: -105px !important;
    margin-left: -50px !important;
}

.logo-char[data-char="E"]:nth-child(1) .reveal-arrow {
    top: -80px;
    left: calc(50% - 100px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

/* L */
.logo-char[data-char="L"] .reveal-text {
    top: 40px !important;
    margin-left: -80px !important;
}

.logo-char[data-char="L"] .reveal-arrow {
    top: 70px;
    left: calc(70% - 215px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

.logo-char:nth-child(2) .char-reveal-container {
    margin-left: -10px !important;
}

/* A */
.logo-char[data-char="A"] {
    transform: translateX(15px);
}

.logo-char[data-char="A"] .reveal-text {
    top: 25px !important;
    margin-left: -120px !important;
}

.logo-char[data-char="A"] .reveal-arrow {
    top: 70px;
    left: calc(70% - 275px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

.logo-char:nth-child(4) .char-reveal-container {
    bottom: -40px !important;
}

/* C */
.logo-char[data-char="C"] {
    transform: translateX(7px);
}

.logo-char[data-char="C"] .char-reveal {
    background-image: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) scaleY(1) !important;
    transition: none !important;
}

.logo-char[data-char="C"] .reveal-balloon {
    position: absolute;
    bottom: -50px;
    height: 100%;
    width: auto;
    opacity: 0;
    transition: none;
}

.logo-char[data-char="C"] .balloon-1 {
    bottom: -72px;
    left: 5px;
    height: 90%;
    transform: rotate(0deg) scale(0.85);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s, opacity 0.5s ease 0.15s;
}

.logo-char[data-char="C"] .balloon-2 {
    bottom: -75px;
    right: 5px;
    height: 95%;
    transform: rotate(0deg) scale(0.8);
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, opacity 0.5s ease 0s;
}

.logo-char[data-char="C"]:hover .balloon-1,
.logo-char[data-char="C"].active .balloon-1 {
    opacity: 1;
    transform: rotate(0deg) scale(0.95) translateY(-10px);
}

.logo-char[data-char="C"]:hover .balloon-2,
.logo-char[data-char="C"].active .balloon-2 {
    opacity: 1;
    transform: rotate(0deg) scale(0.9) translateY(-5px);
}

.logo-char[data-char="C"] .reveal-cake {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    height: auto;
    width: 150px;
    z-index: 3;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s, opacity 0.5s ease 0.3s, bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.logo-char[data-char="C"]:hover .reveal-cake,
.logo-char[data-char="C"].active .reveal-cake {
    bottom: -35px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.logo-char[data-char="C"] .reveal-text {
    top: 35px !important;
    margin-left: -80px !important;
}

.logo-char[data-char="C"] .reveal-arrow {
    top: 70px;
    left: calc(60% - 110px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

/* E (2) */
.logo-char[data-char="E"]:nth-child(6) {
    transform: translateX(17px);
}

.logo-char[data-char="E"]:nth-child(6) .char-reveal {
    width: 245px !important;
    height: 245px !important;
    bottom: -15px !important;
}

/* R */
.logo-char[data-char="R"] {
    transform: translateX(25px);
}

.logo-char[data-char="R"] .char-reveal-container {
    width: 315px !important;
    height: 315px !important;
    bottom: -40px !important;
    opacity: 1 !important;
    pointer-events: none;
    z-index: 50;
}

.logo-char[data-char="R"] .reveal-text {
    top: -125px !important;
    margin-left: 172px !important;
}

.logo-char[data-char="R"] .reveal-arrow {
    top: -95px;
    left: calc(50% + 30px);
    transform: scaleX(1) rotate(15deg);
    animation: arrowPointR 0.6s infinite alternate ease-in-out;
}

/* T */
.logo-char[data-char="T"] {
    transform: translateX(18px);
}

.logo-char[data-char="T"] .reveal-text {
    top: -25px !important;
    margin-left: 15px !important;
}

.logo-char[data-char="T"] .reveal-arrow {
    top: 10px;
    left: calc(50% - 110px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

.logo-char:nth-child(8) .char-reveal-container {
    bottom: -95px !important;
    margin-left: -25px !important;
}

/* I */
.logo-char[data-char="I"] {
    transform: translateX(25px);
}

.logo-char[data-char="I"] .char-reveal {
    bottom: -140px !important;
}

.logo-char[data-char="I"] .reveal-text {
    top: -105px !important;
    margin-left: -45px !important;
}

.logo-char[data-char="I"] .reveal-arrow {
    top: -85px;
    left: calc(50% - 80px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

/* J */
.logo-char[data-char="J"] {
    transform-origin: top center;
    transform: translateX(65px) scale(1.45);
}

.logo-char[data-char="J"] .char-reveal {
    transform: translateX(-50%) scale(0.69, 0);
    bottom: 60px !important;
}

.logo-char[data-char="J"]:hover .char-reveal,
.logo-char[data-char="J"].active .char-reveal {
    transform: translateX(-50%) scale(0.69, 0.69) !important;
}

.logo-char[data-char="J"] .reveal-text {
    top: 80px !important;
    margin-left: -50px !important;
}

.logo-char[data-char="J"] .reveal-arrow {
    top: 110px;
    left: calc(60% - 130px);
    transform: scaleX(-1) rotate(15deg);
    animation: arrowPoint 0.6s infinite alternate ease-in-out;
}

/* O */
.logo-char[data-char="O"] {
    transform-origin: top center;
    transform: translateX(130px) scale(1.45);
}

.logo-char[data-char="O"] .char-reveal {
    width: 240px !important;
    height: 310px !important;
    bottom: -15px !important;
    margin-left: 5px !important;
    padding-left: 5px !important;
}

.logo-char[data-char="O"] .reveal-text {
    transform: translateX(-50%) scale(0.69) !important;
    /* Uniform Scale */
    top: -20px !important;
    margin-left: -30px !important;
}

.logo-char[data-char="O"] .reveal-arrow {
    transform: scaleX(-0.69) scaleY(0.69) rotate(15deg);
    top: -5px !important;
    left: calc(50% - 60px);
    animation: arrowPointO 0.6s infinite alternate ease-in-out;
}

@keyframes arrowPoint {
    0% {
        transform: scaleX(-1) rotate(15deg) translate(0, 0);
    }

    100% {
        transform: scaleX(-1) rotate(15deg) translate(10px, -5px);
    }
}

@keyframes arrowPointR {
    0% {
        transform: scaleX(1) rotate(15deg) translate(0, 0);
    }

    100% {
        transform: scaleX(1) rotate(15deg) translate(10px, -5px);
    }
}

@keyframes arrowPointO {
    0% {
        transform: scaleX(-0.69) scaleY(0.69) rotate(15deg) translate(0, 0);
    }

    100% {
        transform: scaleX(-0.69) scaleY(0.69) rotate(15deg) translate(10px, -5px);
    }
}

/* (Mobile rules moved to end of file to prevent cascade overrides) */

/* 0. HIGH RES TUNING (1860px - 1980px) */
/* Reduces scale early to avoid 'tight' look at 1860px */
@media (max-width: 1980px) {
    .interactive-logo {
        transform: translateX(-80px) scale(0.8) !important;
    }

    /* Compensate margin for the scale down if needed */
    .interactive-logo-container {
        margin-bottom: -40px;
    }

    /* SPECIFIC TWEAK: R Reveal Text +10px right */
    .logo-char[data-char="R"] .reveal-text {
        margin-left: 182px !important;
        /* Base was 172px */
    }

    /* SPECIFIC TWEAK: A Reveal Text -40px left */
    .logo-char[data-char="A"] .reveal-text {
        margin-left: -120px !important;
        /* Base was -80px */
    }
}

/* 0.5 STEPPED BREAKPOINTS (1440px - 1860px) */
/* Range 1: 1600px - 1860px */
@media (max-width: 1860px) {
    .interactive-logo {
        transform: translateX(-60px) scale(0.8) !important;
        /* Unified Scale */
    }

    /* FREEZE Internals at approx 1860px values to prevent relative drift */
    /* FORCE PX VALUES to stop "paulatinamente" shrinking */
    .logo-char {
        height: 220px !important;
        /* Fixed Max Height from Clamp */
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .logo-space {
        width: 30px !important;
        flex-shrink: 0 !important;
        /* Critical: Prevent collapse */
    }

    .logo-tagline {
        /* LOCK ALIGNMENT TO CENTER (50%) */
        /* Eliminates drift caused by viewport-relative 40% */
        left: 50% !important;
        margin-left: -147px !important;
        /* REFINED OFFSET: Shifted 10px right (was -157px) */
        transform: translateX(-50%) !important;
        width: 1420px !important;
        /* Fixed Max Width */
        position: absolute !important;
    }

    .interactive-logo-container {
        margin-bottom: -40px;
    }

    /* COMPENSATE FOR SCALE (0.8) */
    .logo-intro {
        margin-bottom: 70px !important;
        font-size: 5.5rem !important;
    }

    .logo-outro {
        margin-top: 160px !important;
        font-size: 5.5rem !important;
    }

    /* SPECIFIC TWEAK: A Reveal Text -40px left (Total) */
    .logo-char[data-char="A"] .reveal-text {
        margin-left: -120px !important;
        /* Base was -80px */
    }

    /* SPECIFIC TWEAK: A Reveal Arrow 15px left */
    .logo-char[data-char="A"] .reveal-arrow {
        left: calc(70% - 290px) !important;
        /* Base was -275px */
    }
}

/* Range 2: 1440px - 1600px */
@media (max-width: 1600px) {
    .interactive-logo {
        transform: translateX(-50px) scale(0.7) !important;
        /* Smaller Step */
    }

    /* EXPLICITLY FREEZE AGAIN to prevent any leak or growth */
    .logo-char {
        height: 220px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .logo-tagline {
        /* Ensure it remains locked as in the 1860 rule */
        width: 1420px !important;
        max-width: none !important;
        /* Prevent shrinking from container width */
        left: 50% !important;
        margin-left: -147px !important;
        transform: translateX(-50%) !important;
    }

    /* COMPENSATE MARGINS FOR SCALE (0.7) */
    .logo-intro {
        margin-bottom: 60px !important;
        font-size: 5.0rem !important;
    }

    .logo-outro {
        margin-top: 140px !important;
        font-size: 5.0rem !important;
    }

    /* SPECIFIC TWEAK: L Reveal Text 30px UP */
    .logo-char[data-char="L"] .reveal-text {
        top: 10px !important;
        /* Base was 40px */
    }

    /* SPECIFIC TWEAK: L Reveal Arrow 20px UP */
    .logo-char[data-char="L"] .reveal-arrow {
        top: 50px !important;
        /* Base was 70px */
    }

    /* SPECIFIC TWEAK: E(1) Reveal Text 30px UP */
    .logo-char[data-char="E"]:nth-child(1) .reveal-text {
        top: -135px !important;
        /* Base -105px */
    }

    /* SPECIFIC TWEAK: E(1) Reveal Arrow 20px UP */
    .logo-char[data-char="E"]:nth-child(1) .reveal-arrow {
        top: -100px !important;
        /* Base -80px */
    }

    /* SPECIFIC TWEAK: A Reveal Text 20px Left, 10px UP */
    .logo-char[data-char="A"] .reveal-text {
        margin-left: -140px !important;
        /* Base -120px - 20px */
        top: 15px !important;
        /* Base 25px - 10px */
    }

    /* SPECIFIC TWEAK: A Reveal Arrow 10px UP */
    .logo-char[data-char="A"] .reveal-arrow {
        top: 60px !important;
        /* Base 70px */
    }

    /* SPECIFIC TWEAK: C Reveal Text 20px Left, 15px UP */
    .logo-char[data-char="C"] .reveal-text {
        margin-left: -100px !important;
        /* Base -80px */
        top: 20px !important;
        /* Base 35px */
    }

    /* SPECIFIC TWEAK: C Reveal Arrow 15px UP */
    .logo-char[data-char="C"] .reveal-arrow {
        top: 55px !important;
        /* Base 70px */
    }

    /* SPECIFIC TWEAK: I Reveal Text 15px UP */
    .logo-char[data-char="I"] .reveal-text {
        top: -120px !important;
        /* Base -105px */
    }

    /* BOOST REVEAL LEGIBILITY */
    .reveal-text {
        height: 95px !important;
        /* Was 75px */
    }

    .reveal-arrow {
        height: 140px !important;
        /* Was 120px */
    }
}

/* 1. LAPTOPS (1280px - 1440px) */
/* Drift Fix: Revert to specific override logic for this range */
/* Note: Since we have a rule above for <1600, this one needs to be specific or stronger */
/* 1. LAPTOPS (1280px - 1440px) */
/* Drift Fix: Apply STATIC FREEZE strategy (Step 3) */
@media (min-width: 1281px) and (max-width: 1440px) {
    .interactive-logo {
        transform: translateX(-40px) scale(0.6) !important;
        /* Step down to 60% */
    }

    /* EXPLICITLY FREEZE INTERNALS */
    .logo-char {
        height: 220px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .logo-space {
        width: 30px !important;
        flex-shrink: 0 !important;
    }

    .logo-tagline {
        /* LOCK ALIGNMENT TO CENTER (50%) */
        width: 1420px !important;
        max-width: none !important;
        left: 50% !important;
        margin-left: -147px !important;
        /* Same offset as larger sizes */
        transform: translateX(-50%) !important;
        position: absolute !important;
        bottom: -90px !important;
        /* Ensure vertical position is reset */
    }

    /* SPECIFIC TWEAK: O Reveal 40px UP (Total) */
    .logo-char[data-char="O"] .reveal-text {
        top: -60px !important;
        /* Base -20px */
    }

    .logo-char[data-char="O"] .reveal-arrow {
        top: -45px !important;
        /* Base -5px */
    }

    /* --- BATCH TWEAKS (User Request) --- */

    /* E(1): Text 30px UP (Total), Arrow 25px UP (Total) */
    .logo-char[data-char="E"]:nth-child(1) .reveal-text {
        top: -135px !important;
        /* Base -105px */
    }

    .logo-char[data-char="E"]:nth-child(1) .reveal-arrow {
        top: -105px !important;
        /* Base -80px */
    }

    /* L: Arrow 10px LEFT */
    .logo-char[data-char="L"] .reveal-arrow {
        left: calc(70% - 225px) !important;
        /* Base -215px */
    }

    /* A: Arrow 30px LEFT (Total) */
    .logo-char[data-char="A"] .reveal-arrow {
        left: calc(70% - 305px) !important;
        /* Base -275px */
    }

    /* C: Text 60px LEFT / 25px UP (Total), Arrow 45px LEFT / 20px UP (Total) */
    .logo-char[data-char="C"] .reveal-text {
        margin-left: -140px !important;
        /* Base -80 */
        top: 10px !important;
        /* Base 35 */
    }

    .logo-char[data-char="C"] .reveal-arrow {
        left: calc(60% - 155px) !important;
        /* Base -110 */
        top: 50px !important;
        /* Base 70 */
    }

    /* T: Text 20px RIGHT / 15px UP, Arrow 15px UP */
    .logo-char[data-char="T"] .reveal-text {
        margin-left: 35px !important;
        /* Base 15 */
        top: -40px !important;
        /* Base -25 */
    }

    .logo-char[data-char="T"] .reveal-arrow {
        top: -5px !important;
        /* Base 10 */
    }

    /* I: 30px UP (Total) */
    .logo-char[data-char="I"] .reveal-text {
        top: -135px !important;
        /* Base -105 */
    }

    .logo-char[data-char="I"] .reveal-arrow {
        top: -100px !important;
        /* Base -85 */
    }

    /* COMPENSATE MARGINS FOR SCALE (0.6) */
    .logo-intro {
        margin-bottom: 50px !important;
        font-size: 4.5rem !important;
    }

    .logo-outro {
        margin-top: 120px !important;
        font-size: 4.5rem !important;
    }

    /* BOOST REVEAL LEGIBILITY FURTHER */
    .reveal-text {
        height: 110px !important;
    }

    .reveal-arrow {
        height: 160px !important;
    }
}

/* 2. SMALL DESKTOPS / TABLET LANDSCAPE (< 1280px) */
/* Requires tighter constraints */


/* STATIC LOGO CONTAINER (Hidden by default) */
.static-logo-container {
    display: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.static-logo-tablet,
.static-logo-mobile {
    display: none;
    width: 100%;
    height: auto;
    max-width: 1000px;
    /* Sensible max */
    margin: 0 auto;
}

/* 4. SMALL MOBILE TWEAK (< 500px) */
/* Adjusted padding per user request (was 100px, now 20px) */
@media (max-width: 500px) {
    .hero-col-left {
        padding-top: 20px !important;
        /* Lifted up significantly */
    }
}

/* --- MOBILE ROBUST FIX (ABSOLUTE CENTERING + PAN & ZOOM) --- */
/* High Specificity Override */
@media (max-width: 900px) {

    /* HIDE INTERACTIVE LOGO */
    .interactive-logo-container {
        display: none !important;
    }

    /* SHOW VIDEO */
    .mobile-hero-video {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        margin-bottom: 20px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Keep the rules below just in case we revert, but they won't show */
    /* Use body prefix for extra specificity war winning */
    body .interactive-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        /* Vertically centered in the 400px container */
        width: 1420px !important;
        height: 250px !important;

        /* Center using negative margins of half-size */
        margin-left: -710px !important;
        margin-top: -205px !important;
        /* Adjusted to -205px per user request */

        /* Base Scale (JS will override this with dynamic values) */
        transform: translateX(0px) scale(0.65) !important;
        transform-origin: center center !important;

        /* Smooth Transition for the Pan Effect */
        transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        transform-style: flat !important;
        z-index: 10 !important;
        /* Ensure above background */
    }

    /* Intro Text (Hola, somos) - Static & Centered */
    .logo-intro {
        display: block !important;
        font-size: 5.2rem !important;
        /* Large Size */
        line-height: 1 !important;
        /* Tight spacing to remove invisible gap */
        text-align: center !important;
        position: absolute !important;
        top: -140px !important;
        /* User specified -140px */
        width: 100% !important;
        margin: 0 !important;
        z-index: 20 !important;
    }

    /* Outro Text (somos todo esto.) - Static & Centered */
    .logo-outro {
        display: block !important;
        font-size: 5.2rem !important;
        /* Large Size */
        line-height: 1 !important;
        text-align: center !important;
        position: absolute !important;
        bottom: 20px !important;
        /* User specified 20px */
        width: 100% !important;
        margin: 0 !important;
        z-index: 20 !important;
    }
}