:root {
    --purple-card: #3a1c35;
    --purple-overlay: rgba(30, 20, 35, 0.65);
    --gold-btn: #f4cd68;
    --gold-hover: #e0b852;
    --text-white: #ffffff;
    --text-light: #e4e4e4;
    --divider-color: rgba(255, 255, 255, 0.2);
    --accent-pink: #a4457e;
    --dark-text: #333333;
    --rdp-ease: cubic-bezier(0.22, 0.7, 0.2, 1);
    --rdp-shift: 28px;
    --rdp-dur: 0.9s;
}

/* En móviles y pantallas táctiles los desplazamientos y duraciones son menores (ver «ANIMACIONES»). */
@media (max-width: 1024px), (hover: none) {
    :root {
        --rdp-shift: 18px;
        --rdp-dur: 0.7s;
    }
}

/* AISLAMIENTO DEL TEMA
   El CSS de Avril se carga dentro de la capa «rdp-theme» (ver loader.php); este CSS no tiene capa,
   así que siempre gana. Aquí se devuelve cada elemento de la landing al estado de navegador
   (all: revert) y se restablece la base que antes vivía en * y body. Con eso la landing se ve
   igual que el HTML original aunque el tema tenga reglas globales (body, h1, p, button...). */
:where(main.rdp-main, .rdp-main section, .rdp-main div, .rdp-main p, .rdp-main h1, .rdp-main h2,
    .rdp-main h3, .rdp-main span, .rdp-main a, .rdp-main small, .rdp-main strong, .rdp-main hr) {
    all: revert;
}

:where(.rdp-main, .rdp-main *, .rdp-main *::before, .rdp-main *::after) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* all: revert no cubre estas dos; Avril activa «antialiased» en todo el sitio. */
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

.rdp-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--text-white);
    background-color: #f7f7f7;
    overflow-x: hidden;
    overflow-x: clip;
}

/* Este archivo es la hoja de estilos de la plantilla «Retiro de Parejas».
   Los fondos --rdp-hero-bg, --rdp-quote-bg y --rdp-exp-bg los define la plantilla
   con las imágenes elegidas en el administrador; los url() son solo el valor por defecto. */

/* HERO SECTION */
.hero {
    position: relative;
    /* Con el menú de Avril arriba, la portada ocupa lo que queda de la pantalla (landing.js mide el menú). */
    min-height: calc(100vh - var(--rdp-header-h, 0px));
    display: flex;
    align-items: center;
    padding: 20px 5%;
}

/* Fondos como capa propia (antes eran background de la sección) para poder moverlos con parallax. */
.hero-bg,
.bottom-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-img,
.bottom-bg-img {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-img {
    background-image: var(--rdp-hero-bg, url('../images/hotel-santafe.jpg'));
    background-position: center right 20%;
}

.bottom-bg-img {
    background-image: var(--rdp-quote-bg, url('../images/manos.jpeg'));
    background-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-side {
    max-width: 550px;
    padding-left: 20px;
}

.subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-light);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 15px;
}

.main-title span {
    color: #eabfb9;
}

.description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 480px;
}

.action-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* INFO CARD */
.info-card {
    background: linear-gradient(150deg, #5b3052 0%, #2f152a 100%);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.info-item.closing {
    margin-bottom: 15px;
}

.info-icon {
    margin-right: 15px;
    color: #ebb5b7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.info-icon.lotus {
    color: var(--text-white);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.info-value {
    font-size: 16px;
    font-family: 'Playfair Display', serif;
}

.info-value small {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.small-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
}

.card-divider {
    border: 0;
    height: 1px;
    background-color: var(--divider-color);
    margin: 12px 0;
}

.reserve-btn {
    background-color: var(--gold-btn);
    color: #000;
    border: none;
    padding: 14px 24px;
    width: 100%;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, transform 0.35s var(--rdp-ease), box-shadow 0.35s var(--rdp-ease);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.reserve-btn:hover {
    background-color: var(--gold-hover);
}

.arrow {
    margin-left: 12px;
}

.card-footer {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* GRAPHICS SIDE */
.hero-graphics-side {
    position: relative;
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 40px;
}

.handwritten-note {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 600;
    color: #4a2b3e;
    text-align: center;
    line-height: 1.1;
    transform: rotate(-10deg);
    position: absolute;
    top: 60px;
    right: 20px;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 1),
        0 0 15px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.6);

    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.hero-note-heart {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
    color: #a4457e;
    /* Using the pink color for contrast */
}

.handwritten-note p {
    margin-right: 15px;
}

.heart-icon {
    width: 60px;
    height: 60px;
}

.circle-badge {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(58, 28, 53, 0.85);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.small-heart {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.badge-title {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.badge-title strong {
    display: block;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-top: 5px;
}

.badge-subtitle {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.decorative-heart {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 60px;
    height: 60px;
    color: #eabfb9;
    transform: rotate(15deg);
}


/* FEATURES SECTION */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 5%;
    color: var(--dark-text);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.feature-item svg {
    margin-bottom: 20px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background-color: #eaeaea;
    margin: 0 20px;
}


/* BOTTOM HERO */
.bottom-hero {
    position: relative;
    height: 350px;
    background-color: #2c1a25;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.bottom-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 26, 37, 0.7);
    z-index: 1;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-style: italic;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
    margin-bottom: 25px;
}

.pink-line {
    width: 80px;
    height: 3px;
    background-color: #cd8eb2;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-title {
        font-size: 48px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-graphics-side {
        display: none;
        /* Hide badges on smaller screens for simplicity, or position relative */
    }

    .hero-text-side {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        width: 100%;
        background: rgba(20, 20, 30, 0.85);
    }

    .features {
        flex-direction: column;
    }

    .feature-divider {
        width: 100px;
        height: 1px;
        margin: 30px 0;
    }

    .quote {
        font-size: 32px;
    }
}

/* EXPERIENCIA INCLUYE SECTION */
.experience-section {
    background-color: #fbf7fa;
    padding: 0 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-header-container {
    width: 100%;
    /* Gradient overlay from left to right and bottom to top using #fbf7fa */
    background:
        linear-gradient(to right, #fbf7fa 0%, rgba(251, 247, 250, 0.9) 35%, rgba(251, 247, 250, 0) 80%),
        linear-gradient(to top, #fbf7fa 0%, #fbf7fa 5%, rgba(251, 247, 250, 0) 35%),
        var(--rdp-exp-bg, url('../images/pareja-atardecer.jpg'));
    background-size: cover;
    background-position: center right;
    padding: 80px 5% 70px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
    border-bottom: none;
}

.exp-header-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exp-badge {
    display: inline-block;
    background-color: #f2e3ed;
    color: #4a2b3e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.exp-title-row {
    position: relative;
    display: inline-block;
}

.exp-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: #160a12;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 5px;
}

.exp-cursive {
    font-family: 'Dancing Script', cursive;
    color: #921764;
    font-weight: 400;
    font-size: 110px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 60px;
    line-height: 1;
    transform: rotate(-6deg);
    transform-origin: left center;
}

.heart-inline {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    color: #a4457e;
}

.exp-floating-note {
    position: absolute;
    right: 15%;
    top: 25%;
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
    line-height: 1.2;
}

.exp-floating-note .small-heart {
    width: 45px;
    height: 45px;
    color: #eabfb9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.exp-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-top: 25px;
    max-width: 500px;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    width: 90%;
    margin: -20px auto 0 auto;
    position: relative;
    z-index: 10;
}

.exp-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 4px solid white;
    transition: transform 0.5s var(--rdp-ease), box-shadow 0.5s var(--rdp-ease);
}

.exp-card-img {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s var(--rdp-ease);
}

.exp-card-icon {
    width: 60px;
    height: 60px;
    background-color: #a4457e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 170px;
    left: 20px;
    border: 4px solid #fff;
}

.exp-card-content {
    padding: 40px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.exp-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2c1a25;
    margin-bottom: 15px;
    line-height: 1.2;
}

.exp-card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.exp-card-note {
    font-family: 'Dancing Script', cursive;
    color: #a4457e;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: auto;
    transform: rotate(-6deg);
    transform-origin: center;
}

.exp-card-note svg {
    width: 24px;
    height: 24px;
}

/* FINAL CTA SECTION */
.final-cta {
    background-color: #3b1933;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 90%;
    margin: 15px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bg-leaf {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -30px;
    z-index: 1;
}

.left-leaf {
    left: -50px;
}

.right-leaf {
    right: -50px;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.cta-col {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    position: relative;
    padding: 0 40px;
}

.cta-col-2::before,
.cta-col-3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-col-1 {
    padding-left: 0;
}

.cta-icon-wrapper {
    color: #eabfb9;
    flex-shrink: 0;
}

.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.cta-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cta-big-value {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 700;
}

.cta-people-icons {
    display: flex;
    gap: 6px;
    color: #eabfb9;
}

.cta-people-icons svg {
    width: 24px;
    height: 24px;
}

.cta-strong-value {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.cta-medium-value {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.cta-small-value {
    font-size: 14px;
    color: #fff;
}

.handwritten-col {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.2;
    justify-content: flex-end;
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    transform: rotate(-12deg);
}

.pink-scribble {
    width: 100%;
    height: 15px;
    margin-top: 5px;
}

.cta-heart {
    width: 45px;
    height: 45px;
    margin-left: 15px;
    color: #eabfb9;
}

.cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-tags {
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
}

.final-btn {
    width: 100%;
    max-width: 500px;
    margin-bottom: 25px;
    border-radius: 40px;
    padding: 16px 40px;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-footer-text {
    font-size: 14px;
    color: #eabfb9;
}

@media (max-width: 1024px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-columns {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .cta-col {
        padding: 0;
    }

    .cta-col-2::before,
    .cta-col-3::before {
        display: none;
    }

    .handwritten-col {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .exp-header-container {
        flex-direction: column;
        padding: 40px 5% 40px 5%;
    }

    .exp-title {
        font-size: 48px;
    }

    .exp-cursive {
        font-size: 64px;
        margin-left: 10px;
        gap: 10px;
    }

    .exp-floating-note {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 40px;
        align-self: flex-end;
        text-align: right;
        font-size: 28px;
    }
}

/* BOTONES DE RESERVA (son enlaces <a>) */
a.reserve-btn {
    text-decoration: none;
}

a.reserve-btn:hover,
a.reserve-btn:focus {
    color: #000;
}

a.reserve-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.reserve-btn.final-btn {
    text-transform: uppercase;
}

/* Íconos de la franja de beneficios */
.feature-item svg {
    color: var(--accent-pink);
}

/* El menú de Avril se usa sin la banda de migas de pan del tema. */
.rdp-landing #breadcrumb-section {
    display: none;
}

/* Menú fijo al hacer scroll: el contenedor del encabezado de Avril tiene z-index 3 y encierra al menú
   fijo (z-index 999) dentro de ese nivel, así que las tarjetas (z-index 10) lo tapaban.
   Se sube el contenedor por encima de todo el contenido de la landing. */
.rdp-landing #header-section {
    z-index: 1000;
}

/* ANIMACIONES
   Todo se apoya en opacity y en las propiedades individuales translate/scale (no tocan «transform»,
   así que conviven con las rotaciones de las notas manuscritas) y se anima en el compositor.
   Nada se anima si el visitante pide menos movimiento (prefers-reduced-motion).
   Capas:
     1. Portada: animación de entrada solo con CSS, sin depender de JS.
     2. Revelado al hacer scroll: landing.js añade .rdp-anim a <main> y marca los elementos con .rdp-reveal;
        sin JS (o si algo falla) el contenido queda visible.
     3. Modo completo (.rdp-full, lo pone landing.js): parallax, zoom de la portada y latido del corazón.
        Solo con pantalla ≥1025px, ratón, sin «ahorro de datos» y con más de 2 núcleos. En móviles y tabletas
        no hay parallax, ni blur, ni animaciones infinitas: solo fundidos cortos que se ejecutan una vez. */
@media (prefers-reduced-motion: no-preference) {
    @keyframes rdp-rise {
        from {
            opacity: 0;
            translate: 0 var(--rdp-shift);
        }
    }

    @keyframes rdp-focus {
        from {
            opacity: 0;
            translate: 0 var(--rdp-shift);
            filter: blur(8px);
        }
    }

    @keyframes rdp-fade {
        from {
            opacity: 0;
        }
    }

    @keyframes rdp-pop {
        from {
            opacity: 0;
            scale: 0.7;
        }
    }

    @keyframes rdp-settle {
        from {
            scale: 1.1;
        }
    }

    @keyframes rdp-beat {
        0%,
        100% {
            scale: 1;
        }

        50% {
            scale: 1.12;
        }
    }

    /* 1. Portada */
    .hero-text-side > * {
        animation: rdp-rise var(--rdp-dur) var(--rdp-ease) backwards;
    }

    .hero-text-side > .subtitle {
        animation-delay: 0.1s;
    }

    .hero-text-side > .main-title {
        animation-delay: 0.22s;
    }

    .hero-text-side > .description {
        animation-delay: 0.36s;
    }

    .hero-text-side > .action-subtitle {
        animation-delay: 0.46s;
    }

    .hero-text-side > .info-card {
        animation-delay: 0.58s;
    }

    .info-card > * {
        animation: rdp-fade 0.8s var(--rdp-ease) backwards;
    }

    .info-card > :nth-child(1) {
        animation-delay: 0.85s;
    }

    .info-card > :nth-child(2) {
        animation-delay: 0.95s;
    }

    .info-card > :nth-child(3) {
        animation-delay: 1.05s;
    }

    .info-card > :nth-child(4) {
        animation-delay: 1.15s;
    }

    .info-card > :nth-child(5) {
        animation-delay: 1.25s;
    }

    .info-card > :nth-child(6) {
        animation-delay: 1.35s;
    }

    .info-card > :nth-child(7) {
        animation-delay: 1.45s;
    }

    .circle-badge {
        animation: rdp-pop 0.9s var(--rdp-ease) 0.9s backwards;
    }

    .handwritten-note {
        animation: rdp-pop 0.9s var(--rdp-ease) 1.15s backwards;
    }

    .decorative-heart {
        animation: rdp-pop 0.9s var(--rdp-ease) 1.4s backwards;
    }

    /* 2. Revelado al hacer scroll */
    .rdp-anim .rdp-reveal {
        opacity: 0;
        translate: 0 var(--rdp-shift);
        transition:
            opacity var(--rdp-dur) var(--rdp-ease),
            translate var(--rdp-dur) var(--rdp-ease),
            scale var(--rdp-dur) var(--rdp-ease);
        transition-delay: var(--rdp-delay, 0ms);
    }

    .rdp-anim .rdp-reveal[data-rdp='fade'] {
        translate: none;
    }

    .rdp-anim .rdp-reveal[data-rdp='left'] {
        translate: calc(var(--rdp-shift) * -2) 0;
    }

    .rdp-anim .rdp-reveal[data-rdp='right'] {
        translate: calc(var(--rdp-shift) * 2) 0;
    }

    .rdp-anim .rdp-reveal[data-rdp='line'] {
        translate: none;
        scale: 0 1;
        transform-origin: left center;
    }

    .rdp-anim .rdp-reveal.is-in,
    .rdp-anim .rdp-reveal.is-in[data-rdp] {
        opacity: 1;
        translate: none;
        scale: none;
    }

    /* Titulares: aparecen palabra por palabra (landing.js envuelve cada palabra en .rdp-w) */
    .rdp-anim .rdp-w {
        display: inline-block;
        opacity: 0;
        translate: 0 0.45em;
        transition:
            opacity 0.8s var(--rdp-ease),
            translate 0.8s var(--rdp-ease);
        transition-delay: calc(var(--i, 0) * var(--rdp-word-step, 70ms));
    }

    .rdp-anim .rdp-words.is-in .rdp-w {
        opacity: 1;
        translate: none;
    }

    /* Grupos de íconos que aparecen uno tras otro */
    .rdp-anim .rdp-stagger > * {
        opacity: 0;
        scale: 0.4;
        transition:
            opacity 0.5s ease,
            scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-delay: calc(var(--i, 0) * 70ms + 450ms);
    }

    .rdp-anim .rdp-stagger.is-in > * {
        opacity: 1;
        scale: none;
    }

    /* Subrayado manuscrito que se dibuja */
    .rdp-anim .rdp-draw .pink-scribble path {
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
        transition: stroke-dashoffset 1.2s var(--rdp-ease) 0.6s;
    }

    .rdp-anim .rdp-draw.is-in .pink-scribble path {
        stroke-dashoffset: 0;
    }

    /* Cifras que cuentan hacia arriba: el número real sigue en el HTML (invisible mientras cuenta, así la caja
       mide lo de siempre y no hay saltos) y el conteo se dibuja encima con contenido generado. */
    .rdp-num {
        position: relative;
        display: inline-block;
    }

    .rdp-anim .rdp-num.is-counting .rdp-num-real {
        opacity: 0;
    }

    .rdp-anim .rdp-num.is-counting::after {
        content: attr(data-n);
        content: attr(data-n) / '';
        position: absolute;
        top: 0;
        right: 0;
    }

    /* 3. Modo completo (escritorio) */
    .rdp-full .hero-text-side > .main-title {
        animation-name: rdp-focus;
    }

    .rdp-full .hero-bg-img {
        top: -12%;
        will-change: translate;
        animation: rdp-settle 2.2s var(--rdp-ease) backwards;
    }

    .rdp-full .bottom-bg-img {
        top: -15%;
        bottom: -15%;
        will-change: translate;
    }

    .rdp-full .circle-badge,
    .rdp-full .handwritten-note,
    .rdp-full .decorative-heart {
        will-change: translate;
    }

    .rdp-full .decorative-heart {
        animation:
            rdp-pop 0.9s var(--rdp-ease) 1.4s backwards,
            rdp-beat 3.2s ease-in-out 2.5s infinite;
    }

    .rdp-hero-out .decorative-heart {
        animation-play-state: paused;
    }

    /* Detalles al pasar el ratón (no existen en pantallas táctiles) */
    @media (hover: hover) and (pointer: fine) {
        .exp-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 44px rgba(58, 28, 53, 0.16);
        }

        .exp-card:hover .exp-card-img {
            transform: scale(1.06);
        }

        .reserve-btn:hover,
        .reserve-btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
        }

        .reserve-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
            translate: -120% 0;
            transition: translate 0.8s var(--rdp-ease);
        }

        .reserve-btn:hover::after {
            translate: 120% 0;
        }
    }
}

@media print {
    .rdp-anim .rdp-reveal,
    .rdp-anim .rdp-w,
    .rdp-anim .rdp-stagger > * {
        opacity: 1 !important;
        translate: none !important;
        scale: none !important;
    }

    .rdp-anim .rdp-draw .pink-scribble path {
        stroke-dashoffset: 0 !important;
    }
}
