/* ==========================================================================
   ONLY EVENTS — Landing /eventos
   Se apoya en Crafto (public/css/style.css) + Bootstrap 5.
   Solo define lo que el theme no cubre. Todo va namespaceado bajo .only-events
   o bajo el header propio para no afectar al resto de OnlyService.
   ========================================================================== */

:root {
    --oe-navy: #0A1628;
    --oe-navy-2: #111A2B;
    --oe-blue-deep: #132A4A;
    --oe-blue: #1B4B91;
    --oe-blue-light: #4A8FD6;
    --oe-text: #5C6779;
    --oe-text-soft: #96A2B5;
    --oe-surface: #F3F6FA;
    --oe-border: #E4E9F1;
    --oe-white: #ffffff;
    --oe-nav-h: 66px;
}

/* --------------------------------------------------------------------------
   1. Base de página
   -------------------------------------------------------------------------- */
body.only-events {
    color: var(--oe-text);
    overflow-x: hidden;
}

.only-events section[id] {
    scroll-margin-top: var(--oe-nav-h);
}

.only-events .oe-eyebrow {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--oe-blue-light);
    margin-bottom: 18px;
}

.only-events .oe-eyebrow-dark {
    color: var(--oe-navy);
}

.only-events .oe-title {
    font-family: var(--alt-font);
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -1.4px;
    color: var(--oe-navy);
    margin: 0;
}

.only-events .oe-title strong,
.only-events .oe-title .fw-700 {
    font-weight: 700;
}

.only-events .oe-title-light {
    color: var(--oe-white);
}

.only-events .oe-lead {
    font-size: 15.5px;
    line-height: 29px;
    color: var(--oe-text-soft);
    margin: 0;
}

.only-events .oe-card-title {
    font-family: var(--alt-font);
    font-size: 19px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: -.5px;
    color: var(--oe-navy);
    margin: 0 0 8px;
}

.only-events .oe-card-text {
    font-size: 14.5px;
    line-height: 25px;
    color: var(--oe-text);
    margin: 0;
}

.only-events .bg-oe-navy      { background-color: var(--oe-navy) !important; }
.only-events .bg-oe-navy-2    { background-color: var(--oe-navy-2) !important; }
.only-events .bg-oe-surface   { background-color: var(--oe-surface) !important; }
.only-events .text-oe-blue    { color: var(--oe-blue) !important; }
.only-events .text-oe-light   { color: var(--oe-blue-light) !important; }
.only-events .text-oe-soft    { color: var(--oe-text-soft) !important; }

/* --------------------------------------------------------------------------
   2. Navbar: transparente arriba, navy con blur al hacer sticky
   Reutiliza el mecanismo de Crafto (main.js añade .sticky / .sticky-active)
   -------------------------------------------------------------------------- */
header.oe-header nav.navbar {
    background-color: transparent !important;
    transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, transform .3s ease;
    padding-top: 0;
    padding-bottom: 0;
    min-height: var(--oe-nav-h);
}

header.oe-header.sticky .header-light:not(.disable-fixed) {
    box-shadow: none;
}

header.oe-header.sticky.sticky-active .header-reverse.glass-effect,
header.oe-header.sticky.sticky-appear .header-reverse-back-scroll.glass-effect {
    background-color: rgba(10, 22, 40, .82) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(10, 22, 40, .28);
}

header.oe-header .oe-logo {
    display: flex;
    align-items: center;
    padding: 7px 0 !important;
    margin-right: 14px;
    line-height: 0;
    gap: 0;
}

header.oe-header.sticky .oe-logo {
    padding: 7px 0 !important;
}

header.oe-header .oe-logo picture {
    display: block;
    height: 48px;
    width: auto;
    line-height: 0;
}

header.oe-header .oe-logo img {
    display: block;
    height: 48px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

header.oe-header .navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px 14px !important;
    min-height: 44px;
    line-height: 24px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82) !important;
    transition: color .25s ease;
}

header.oe-header .navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--oe-blue-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

header.oe-header .navbar .navbar-nav .nav-link:hover,
header.oe-header .navbar .navbar-nav .nav-link.active {
    color: var(--oe-blue-light) !important;
}

header.oe-header .navbar .navbar-nav .nav-link:hover::after,
header.oe-header .navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

header.oe-header .navbar .navbar-toggler-line {
    background-color: var(--oe-white) !important;
}

/* Botón CTA del navbar y botones generales */
.only-events .btn-oe,
header.oe-header .btn-oe {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    min-height: 44px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--oe-white);
    background: var(--oe-blue);
    border: 0;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease;
}

.only-events .btn-oe:hover,
header.oe-header .btn-oe:hover {
    background: var(--oe-blue-light);
    color: var(--oe-white);
}

.only-events .btn-oe-lg {
    padding: 17px 34px;
    font-size: 15px;
    line-height: 22px;
    border-radius: 5px;
    box-shadow: 0 18px 40px rgba(27, 75, 145, .35);
}

.only-events .btn-oe-lg:hover {
    transform: translateY(-2px);
}

.only-events .btn-oe-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 34px;
    min-height: 44px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    color: var(--oe-white);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 5px;
    text-decoration: none;
    transition: border-color .25s ease, background-color .25s ease;
}

.only-events .btn-oe-ghost:hover {
    border-color: var(--oe-blue-light);
    background: rgba(74, 143, 214, .12);
    color: var(--oe-white);
}

.only-events .btn-oe-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    min-height: 44px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    color: var(--oe-white);
    background: var(--oe-navy);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color .25s ease;
}

.only-events .btn-oe-dark:hover {
    background: var(--oe-blue);
    color: var(--oe-white);
}

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */
.only-events .oe-hero {
    position: relative;
    padding: 0;
    background: var(--oe-navy);
    overflow: hidden;
}

.only-events .oe-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 78% 8%, rgba(27, 75, 145, .55) 0%, rgba(10, 22, 40, 0) 62%);
    pointer-events: none;
}

.only-events .oe-hero-skew {
    position: absolute;
    right: -6%;
    top: -14%;
    width: 52%;
    height: 130%;
    background: linear-gradient(200deg, rgba(74, 143, 214, .16), rgba(19, 42, 74, 0));
    transform: skewX(-12deg);
    pointer-events: none;
}

.only-events .oe-hero-inner {
    position: relative;
    padding-top: 170px;
    padding-bottom: 130px;
}

.only-events .oe-hero-title {
    font-family: var(--alt-font);
    font-size: clamp(38px, 5.4vw, 74px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: var(--oe-white);
    margin: 0 0 26px;
    text-wrap: balance;
}

.only-events .oe-hero-sub {
    font-size: 19px;
    line-height: 34px;
    color: var(--oe-text-soft);
    margin: 0 0 42px;
    max-width: 33ch;
}

.only-events .oe-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(160deg, var(--oe-blue-deep), var(--oe-navy));
    overflow: hidden;
}

.only-events .oe-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(10, 22, 40, .08) 0%, rgba(10, 22, 40, .22) 100%);
    pointer-events: none;
}

.only-events .oe-hero-media > picture,
.only-events .oe-hero-media > picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.only-events .oe-hero-brand {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}

.only-events .oe-hero-brand picture,
.only-events .oe-hero-brand img {
    position: static;
    inset: auto;
    display: block;
    width: auto;
    height: 64px;
    max-width: min(260px, 72%);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .55));
}

/* --------------------------------------------------------------------------
   3b. Fotos de sección: llenan el recuadro, altura contenida
   -------------------------------------------------------------------------- */
.only-events .oe-photo {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: var(--oe-navy);
}

.only-events .oe-photo picture,
.only-events .oe-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.only-events .oe-photo-wide {
    height: clamp(200px, 24vw, 280px);
    margin-top: 56px;
}

.only-events .oe-photo-band {
    height: clamp(200px, 24vw, 280px);
    margin: 0 0 48px;
}

.only-events .oe-photo-side {
    height: 210px;
    margin-top: 28px;
}

.only-events .oe-photo-card {
    height: 148px;
    border-radius: 0;
}

.only-events .oe-types {
    margin-top: 64px;
}

.only-events .oe-types .oe-photo-band {
    margin-top: 0;
    margin-bottom: 36px;
}

.only-events .oe-vision .oe-photo-wide {
    margin-top: 48px;
}

/* --------------------------------------------------------------------------
   4. Franja de métricas superpuesta
   -------------------------------------------------------------------------- */
.only-events .oe-metrics {
    position: relative;
    z-index: 5;
    margin-top: -72px;
}

.only-events .oe-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px;
    background: var(--oe-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 32px 74px rgba(10, 22, 40, .18);
}

.only-events .oe-metrics-grid > div {
    background: var(--oe-white);
    padding: 34px 30px;
}

/* --------------------------------------------------------------------------
   5. Grids reutilizables
   -------------------------------------------------------------------------- */
.only-events .oe-grid {
    display: grid;
    gap: 24px;
}

.only-events .oe-grid-cards   { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.only-events .oe-grid-2       { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; }
.only-events .oe-grid-split   { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 60px; }
.only-events .oe-grid-small   { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.only-events .oe-grid-steps   { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 44px 34px; }
.only-events .oe-grid-sectors { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 34px; }

/* Tarjeta de servicio */
.only-events .oe-card {
    background: var(--oe-white);
    border: 1px solid var(--oe-border);
    border-radius: 6px;
    padding: 34px 28px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.only-events .oe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(10, 22, 40, .1);
    border-color: var(--oe-white);
}

.only-events .oe-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--oe-surface);
    color: var(--oe-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 24px;
}

/* Lista con separadores de 1px (valores, ventajas) */
.only-events .oe-hairline {
    display: grid;
    gap: 1px;
    background: var(--oe-border);
    border: 1px solid var(--oe-border);
    border-radius: 6px;
    overflow: hidden;
}

.only-events .oe-hairline-cols {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.only-events .oe-hairline > div {
    background: var(--oe-white);
    padding: 20px 24px;
}

.only-events .oe-hairline-lg > div {
    padding: 36px 30px;
}

.only-events .oe-hairline-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.only-events .oe-item-title {
    font-family: var(--alt-font);
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: -.4px;
    color: var(--oe-navy);
    margin: 16px 0 0;
}

.only-events .oe-item-inline {
    font-family: var(--alt-font);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--oe-navy);
}

/* Chips de tipos de evento */
.only-events .oe-chip {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    font-family: var(--alt-font);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--oe-white);
    background: rgba(255, 255, 255, .03);
    transition: border-color .3s ease, background-color .3s ease;
}

.only-events .oe-chip:hover {
    border-color: var(--oe-blue-light);
    background: rgba(74, 143, 214, .12);
}

/* Variante para fondos claros (sección Sectores y eventos) */
.only-events .oe-chip-light {
    border-color: var(--oe-border);
    color: var(--oe-navy);
    background: var(--oe-white);
}

.only-events .oe-chip-light:hover {
    border-color: var(--oe-blue-light);
    background: rgba(74, 143, 214, .10);
}

/* Pasos del proceso */
.only-events .oe-step {
    position: relative;
    padding-left: 76px;
}

.only-events .oe-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--oe-surface);
    color: var(--oe-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--alt-font);
    font-size: 16px;
    font-weight: 700;
}

.only-events .oe-step-num.is-last {
    background: var(--oe-blue);
    color: var(--oe-white);
}

.only-events .oe-note {
    margin: 64px 0 0;
    padding: 26px 32px;
    background: var(--oe-surface);
    border-left: 2px solid var(--oe-blue);
    font-family: var(--alt-font);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--oe-navy);
}

/* Sectores */
.only-events .oe-sector {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--oe-border);
}

/* Visión */
.only-events .oe-vision {
    position: relative;
    padding: 130px 0;
    background: var(--oe-navy);
    overflow: hidden;
}

.only-events .oe-vision-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(90% 120% at 12% 100%, rgba(27, 75, 145, .5) 0%, rgba(10, 22, 40, 0) 60%);
    pointer-events: none;
}

.only-events .oe-vision-title {
    font-family: var(--alt-font);
    font-size: clamp(28px, 3.9vw, 50px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -1.6px;
    color: var(--oe-white);
    margin: 0 0 34px;
    text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   6. Contacto y formulario
   -------------------------------------------------------------------------- */
.only-events .oe-contact-card {
    background: var(--oe-navy);
    border-radius: 6px;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.only-events .oe-contact-card-body {
    padding: 52px 44px;
}

.only-events .oe-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.only-events .oe-contact-label {
    font-size: 11.5px;
    line-height: 16px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--oe-text);
}

.only-events .oe-contact-value {
    font-family: var(--alt-font);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--oe-white);
    text-decoration: none;
}

.only-events .oe-contact-value:hover {
    color: var(--oe-blue-light);
}

.only-events .oe-switch {
    display: inline-flex;
    padding: 4px;
    background: var(--oe-border);
    border-radius: 5px;
    margin-bottom: 34px;
}

.only-events .oe-switch button {
    padding: 11px 22px;
    min-height: 44px;
    border: 0;
    border-radius: 4px;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--oe-text);
    box-shadow: none;
    transition: background-color .25s ease, color .25s ease;
}

.only-events .oe-switch button.is-active {
    background: var(--oe-white);
    color: var(--oe-navy);
    box-shadow: 0 1px 3px rgba(10, 22, 40, .12);
}

.only-events .oe-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 34px 28px;
}

.only-events .oe-field {
    position: relative;
}

.only-events .oe-field-full {
    grid-column: 1 / -1;
}

.only-events .oe-form .form-control,
.only-events .oe-form select,
.only-events .oe-form textarea {
    width: 100%;
    padding: 0 30px 14px 0;
    font-family: var(--primary-font);
    font-size: 15px;
    color: var(--oe-navy);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #cfd6e2;
    border-radius: 0;
    box-shadow: none;
}

.only-events .oe-form .form-control:focus,
.only-events .oe-form select:focus,
.only-events .oe-form textarea:focus {
    background: transparent;
    border-bottom-color: var(--oe-blue);
    box-shadow: none;
    color: var(--oe-navy);
}

.only-events .oe-form select {
    appearance: none;
    -webkit-appearance: none;
    color: var(--oe-text);
}

.only-events .oe-form textarea {
    line-height: 28px;
    resize: vertical;
}

.only-events .oe-form ::placeholder {
    color: var(--oe-text-soft);
    opacity: 1;
}

.only-events .oe-field-icon {
    position: absolute;
    right: 2px;
    top: 0;
    font-size: 15px;
    color: var(--oe-text-soft);
    pointer-events: none;
}

.only-events .oe-form .form-results {
    grid-column: 1 / -1;
}

/* Banda de cierre Only Events (antes del footer global de OnlyService) */
.only-events .oe-endband {
    background: var(--oe-navy);
    padding: 40px 0;
}

.only-events .oe-endband p {
    margin: 0;
    font-size: 13.5px;
    line-height: 24px;
    color: var(--oe-text-soft);
}

.only-events .oe-endband a {
    color: var(--oe-blue-light);
    text-decoration: none;
}

.only-events .oe-endband a:hover {
    text-decoration: underline;
}

.only-events .oe-endband .oe-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.only-events .oe-endband .oe-logo picture {
    display: block;
    height: 40px;
    width: auto;
}

.only-events .oe-endband .oe-logo img {
    display: block;
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    object-position: left center;
}

/* --------------------------------------------------------------------------
   7. Animaciones de entrada (fallback propio, respeta reduced-motion)
   -------------------------------------------------------------------------- */
/* La clase .oe-reveal-ready la añade events.js: si el JS falla, el contenido
   se ve siempre. */
.only-events.oe-reveal-ready [data-oe-reveal] > * {
    opacity: 0;
    transform: translateY(28px);
}

.only-events.oe-reveal-ready [data-oe-reveal].is-visible > * {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   8. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .only-events .oe-contact-card-body { padding: 44px 34px; }
}

@media (max-width: 991px) {
    .only-events section:not(.oe-hero):not(.oe-vision) {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .only-events .oe-vision { padding: 90px 0; }

    .only-events .oe-hero-inner {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .only-events .oe-hero-brand {
        left: 16px;
        bottom: 16px;
    }

    .only-events .oe-hero-brand picture,
    .only-events .oe-hero-brand img {
        height: 52px;
    }

    header.oe-header .navbar .navbar-collapse {
        background: var(--oe-navy);
        margin-top: 0;
        padding: 14px 24px 26px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 24px 40px rgba(10, 22, 40, .28);
    }

    header.oe-header .navbar .navbar-nav .nav-link {
        width: 100%;
        padding: 12px 0 !important;
    }

    header.oe-header .navbar .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 40px;
    }

    header.oe-header .oe-logo picture,
    header.oe-header .oe-logo img {
        height: 40px;
        max-height: 40px;
    }

    header.oe-header .oe-nav-cta {
        display: inline-flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .only-events .oe-metrics { margin-top: -40px; }
    .only-events .oe-grid-2,
    .only-events .oe-grid-split { gap: 40px; }
    .only-events .oe-contact-card-body { padding: 36px 26px; }
    .only-events .oe-photo-wide { margin-top: 36px; height: 180px; }
    .only-events .oe-photo-band { margin-bottom: 36px; height: 180px; }
    .only-events .oe-photo-side { height: 170px; }
    .only-events .oe-photo-card { height: 120px; }
    .only-events .oe-note { margin-top: 44px; padding: 22px 24px; font-size: 16.5px; line-height: 28px; }
    .only-events .oe-step { padding-left: 0; }
    .only-events .oe-step-num { position: static; margin-bottom: 14px; }
}

@media (max-width: 575px) {
    .only-events .oe-hero-brand {
        left: 14px;
        bottom: 14px;
    }

    .only-events .oe-hero-brand picture,
    .only-events .oe-hero-brand img {
        height: 44px;
        max-width: min(200px, 70%);
    }

    .only-events .oe-hero-inner { padding-top: 120px; padding-bottom: 80px; }
    .only-events .oe-switch { width: 100%; }
    .only-events .oe-switch button { flex: 1; padding: 11px 12px; font-size: 13px; }
    .only-events .btn-oe-lg,
    .only-events .btn-oe-ghost { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .only-events *,
    .oe-header * {
        transition: none !important;
        animation: none !important;
    }

    .only-events.oe-reveal-ready [data-oe-reveal] > * {
        opacity: 1;
        transform: none;
    }
}
