/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
    --rose:        #C4607A;
    --rose-light:  #D4849A;
    --rose-pale:   #FDF0F3;
    --sage:        #7A9E8A;
    --sage-dark:   #3D5448;
    --white:       #FFFFFF;
    --off-white:   #F9F7F5;
    --text-dark:   #222222;
    --text-mid:    #666666;
    --text-light:  #999999;
    --border:      #E5E0E2;
    --font-slab:   'Cormorant Garamond', Georgia, serif;
    --font-script: 'Cormorant Garamond', Georgia, serif;
    --font-body:   'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ══════════════════════════════════════════
   HELPERS
══════════════════════════════════════════ */
.section-title {
    font-family: var(--font-slab);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

/* Línea decorativa rosa debajo del título */
.title-deco {
    display: inline-block;
    width: 38px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    position: relative;
    margin-top: 0.5rem;
}
.title-deco::after {
    content: '';
    position: absolute;
    right: -12px; top: 0;
    width: 7px; height: 2px;
    background: var(--rose);
    opacity: 0.45;
    border-radius: 2px;
}

.section-header.centered           { text-align: center; margin-bottom: 1.8rem; }
.section-header.centered .title-deco { margin: 0.5rem auto 0; display: block; }
.title-deco.left                   { display: block; margin-left: 0; }

.script-rose {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--rose);
    font-weight: 600;
    font-size: 2.5rem !important;
}

.divider {
    display: block;
    width: 120px;
    height: auto;
}

.divider-centered {
    margin: 0.6rem auto 0;
}

.divider-left {
    margin: 0.55rem 0 0.8rem;
}

.divider-hero {
    margin: 0.2rem 0 1rem;
    width: 135px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-rose {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.1px;
}
.btn-rose:hover {
    background: #b5566e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,96,122,0.3);
}
.btn-rose.full { width: 100%; text-align: center; display: block; }

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--rose);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #f0ebed;
    padding: 0.4rem 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }

.navbar .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-logo img {
    height: 50px;
    border-radius: 50%;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-brand-name {
    font-family: var(--font-slab);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
}

.nav-brand-role {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    font-weight: 600;
    color: var(--rose);
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
    margin-left: auto;
    margin-right: 1rem;
}
.nav-link {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.25s;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ══════════════════════════════════════════
   HERO  — grid full width, imagen llena el alto
══════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    background: #F7F3EF;
    overflow: hidden;
}

/* Columna izquierda */
.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.hero-botanical--left {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 120px;
    pointer-events: none;
    z-index: 0;
}
.hero-botanical--left svg {
    width: 100%;
    height: 100%;
}

.hero-asset-left {
    position: absolute;
    left: -62px;
    bottom: -12px;
    height: 300px;
    width: auto;
    z-index: 0;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
    max-width: 540px;
    text-align: left;
}

.hero-title {
    font-family: var(--font-slab);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.28;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
}
.hero-title em {
    font-family: var(--font-slab);
    font-style: normal;
    font-size: 2.6rem;
    color: var(--rose);
    line-height: 1;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.78;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Columna derecha — imagen full height con recorte blob orgánico */
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    clip-path: url(#wavyLeft);
}

/* ══════════════════════════════════════════
   ESPECIALIDADES
══════════════════════════════════════════ */
.especialidades {
    padding: 2rem 0;
    background: var(--white);
}

.cards-grid        { display: grid; gap: 1.4rem; }
.cards-grid.four   { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three  { grid-template-columns: repeat(3, 1fr); }

.cards-grid.four { margin-top: 2rem; }
.cards-grid.three { margin-top: 2rem; }

.spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.4rem 1.8rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.spec-card:hover {
    box-shadow: 0 8px 28px rgba(196,96,122,0.1);
    transform: translateY(-4px);
}

.spec-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}
.spec-icon img  {
    width: 90px;
    height: auto;
    object-fit: contain;
}

.spec-card h3 {
    font-family: var(--font-slab);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1;
    color: var(--text-dark);
}
.spec-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════════ */
.sobre-mi {
    padding:  0;
    background: #F7F3EF;
    overflow: hidden;
}

/* Grid full-width: imagen flush izquierda, texto con max-width centrado */
.sobre-mi-container {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

/* Imagen: flush al borde izquierdo, cuadrada */
.sobre-mi-image {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.sobre-mi-image img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    height: 600px;
}

/* Texto: centrado dentro de su columna con padding */
.sobre-mi-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem;
    max-width: 720px;
}

.label-small {
    font-family: var(--font-slab);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.sobre-mi-name {
    display: block;
    font-size: 1.85rem;
    line-height: 1.2;
    margin-top: 0.7rem;
    margin-bottom: 0.4rem;
}

.sobre-mi-role {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.sobre-mi-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.signature {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 1.8rem;
    font-weight: 600;
    display: block;
}

/* ══════════════════════════════════════════
   QUOTE (dentro de sobre-mi)
══════════════════════════════════════════ */
.sobre-mi-quote {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
    padding: 1.2rem 1.4rem;
    background: var(--rose-pale);
    border-left: 3px solid var(--rose);
    border-radius: 6px;
}

.quote-ornament {
    font-family: var(--font-slab);
    font-size: 4rem;
    line-height: 1;
    color: var(--rose);
    opacity: 0.4;
    flex-shrink: 0;
    user-select: none;
    align-self: flex-start;
    margin-top: -0.2rem;
}

.quote-text {
    font-family: var(--font-slab);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--sage-dark);
    line-height: 1.55;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 600px) {
    .quote-text { font-size: 1.05rem; }
    .quote-ornament { font-size: 2.8rem; }
}

/* ══════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════ */
.servicios {
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid #f3eeef;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #F7F3EF;
}
.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.service-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.service-body {
    padding: 1.1rem 1.3rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.service-info { flex: 1; }
.service-info h3 {
    font-family: var(--font-slab);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    line-height: 1;
}
.service-info p {
    font-size: 0.75rem;
    color: var(--text-mid);
    line-height: 1.3;
}

.service-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.service-icon.rose { background: rgba(196,96,122,0.1); color: var(--rose); }
.service-icon.sage { background: rgba(122,158,138,0.12); color: var(--sage); }
.service-icon svg  { width: 42px; height: 42px; }

/* ══════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════ */
.testimonios {
    padding: 2rem 0;
    background: var(--off-white);
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem 1.6rem;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: var(--rose);
    line-height: 0.9;
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.45;
}

.testi-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 1rem;
    font-style: italic;
}

.testi-card strong {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
    background: var(--rose);
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.cta-botanical {
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}
.cta-botanical--left  { left: 0; }
.cta-botanical--right { right: 0; }

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Empuja el wrap del botón hacia el centro-izquierda en desktop */
@media (min-width: 769px) {
    .cta-cta-wrap {
        margin-right: 8rem;
    }
}

.cta-text h2 {
    font-family: var(--font-slab);
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.cta-text p {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
}

.cta-cta-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cta-maceta {
    position: absolute;
    right: -262px;
    bottom: -50px;
    height: 205px;
    width: auto;
    pointer-events: none;
    z-index: 10;
}

/* ══════════════════════════════════════════
   CONTACTO — HABLEMOS
══════════════════════════════════════════ */
.contacto {
    padding: 2rem 0;
    background-image: url('images/fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.62);
    pointer-events: none;
    z-index: 0;
}

.contacto-maceta-deco {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 0;
}

.contacto > .container:first-child {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contacto-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contacto-desc {
    font-size: 0.92rem;
    color: black;
    line-height: 1.78;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.contacto-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: black;
}
.contacto-list svg {
    width: 17px; height: 17px;
    color: var(--rose);
    flex-shrink: 0;
    stroke-width: 2;
}

/* FORM */
.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.form-row { display: grid; gap: 0.9rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}
.contacto-form input::placeholder,
.contacto-form textarea::placeholder { color: #bbb; }
.contacto-form input:focus,
.contacto-form textarea:focus { border-color: var(--rose); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: var(--sage-dark);
    padding: 3.5rem 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.72;
    max-width: 280px;
    color: rgba(255,255,255,0.62);
}

.footer-social-title {
    font-family: var(--font-slab);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.7rem;
}
.social-icons a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, border-color 0.2s;
}
.social-icons a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.45);
    color: var(--white);
}
.social-icons svg { width: 17px; height: 17px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-text { padding: 4rem 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-title em { font-size: 2.2rem; }
}

@media (max-width: 900px) {
    .cards-grid.four  { grid-template-columns: repeat(2, 1fr); }
    .sobre-mi-container { grid-template-columns: 1fr; }
    .sobre-mi-image img { min-height: 320px; aspect-ratio: 1/1; }
    .sobre-mi-text { padding: 2.5rem 2rem; max-width: 100%; }
    .contacto-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .contacto-maceta-deco { display: none; }
    .cta-container { flex-direction: column; text-align: center; }
    .cta-maceta {
        height: 130px;
        right: -86px;
        bottom: -46px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-brand-name { font-size: 1rem; }
    .nav-brand-role { font-size: 0.56rem; letter-spacing: 0.07em; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--white);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 9999;
        margin: 0;
    }
    .nav-menu.open .nav-link { font-size: 1.3rem; color: var(--text-dark); }

    /* Hero mobile: imagen arriba, texto abajo */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-right {
        order: -1;
        height: 320px;
        position: relative;
    }
    .hero-right img {
        -webkit-clip-path: none;
        clip-path: none;
    }
    .hero-text {
        padding: 3.5rem 1.8rem 3rem;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .hero-botanical--left { display: none; }
    .hero-asset-left {
        height: 140px;
        left: -45px;
        bottom: -8px;
    }
    .hero-title { font-size: 2.25rem; }
    .hero-title em { font-size: 2.35rem; }
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-cta-wrap {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-right: 0;
    }
    .cta-maceta {        
        height: 180px;
        right: -118px;
        bottom: -80px;
    }

    .cards-grid.three { grid-template-columns: 1fr; }
    .cards-grid.four  { grid-template-columns: 1fr; }
    .especialidades .cards-grid.four { padding: 0 0.8rem; }
    .form-row.two     { grid-template-columns: 1fr; }
    .divider          { width: 105px; }
    .divider-hero     { width: 120px; }
    .section-title    { font-size: 1.55rem; }
    .footer-container { flex-direction: column; gap: 2rem; }
    .cta-text h2      { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════
   ANIMACIONES DE ENTRADA
══════════════════════════════════════════ */
@keyframes anim-fade-up {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes anim-slide-down {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Navbar */
.navbar { animation: anim-slide-down 0.5s cubic-bezier(0.22,1,0.36,1) both; }

/* Hero — secuencia de carga */
.hero-title                { animation: anim-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.divider-hero              { animation: anim-fade-in 0.6s ease 0.4s both; }
.hero-subtitle             { animation: anim-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
.hero-text .btn-rose       { animation: anim-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.65s both; }
.hero-right                { animation: anim-fade-in 1s ease 0.1s both; }
.hero-asset-left           { animation: anim-fade-up 0.9s ease 0.45s both; }

/* ── Scroll reveal — estado inicial ── */
.reveal {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal[data-anim="up"]    { transform: translateY(32px); }
.reveal[data-anim="left"]  { transform: translateX(-36px); }
.reveal[data-anim="right"] { transform: translateX(36px); }
.reveal[data-anim="fade"]  { transform: none; }
.reveal[data-anim="scale"] { transform: scale(0.93); }

/* Estado final — activado por JS */
.reveal.visible {
    opacity: 1;
    transform: none !important;
}

/* Reduced motion — desactiva todas las animaciones */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .hero-title, .divider-hero, .hero-subtitle,
    .hero-text .btn-rose, .hero-right, .hero-asset-left {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
