/**
 * Alojamientos — Brisa Marina (pet_friendly)
 * Mezcla: estructura tarjeta default + acentos mock PMS (teal, estrellas, pie con olas).
 */

.aloj-card--theme-pet_friendly {
    border: 1.5px solid #14b8a6 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 22px rgba(20, 184, 166, 0.14) !important;
    background: #ffffff !important;
    display: flex;
    flex-direction: column;
}

.aloj-card--theme-pet_friendly:hover {
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.2) !important;
}

/* Badge PET-FRIENDLY — esquina superior izquierda (mock Brisa) */
.aloj-brisa-pet-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #14b8a6;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    line-height: 1.2;
}

.aloj-brisa-body {
    position: relative;
    flex: 1 1 auto;
    background: #ffffff;
    overflow: hidden;
}

.aloj-brisa-body-inner {
    position: relative;
    z-index: 1;
}

/* Fondo inferior: palmeras + olas a todo el ancho (sin agrandar tarjeta) */
.aloj-brisa-palm-bg {
    position: absolute;
    left: -1.25rem;
    right: -1.25rem;
    bottom: -1.25rem;
    height: 132px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.p-6.aloj-brisa-body .aloj-brisa-palm-bg {
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
}

.aloj-brisa-palm-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.aloj-brisa-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .aloj-brisa-title {
        font-size: 1.5rem;
    }

    .aloj-brisa-palm-bg {
        height: 140px;
    }
}

.aloj-brisa-type-badge {
    flex-shrink: 0;
    background: #ccfbf1;
    color: #0f766e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Estrellas + píldora 5.0 (mock Brisa) */
.aloj-brisa-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
}

.aloj-brisa-stars {
    color: #eab308;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
}

.aloj-brisa-score {
    display: inline-flex;
    align-items: center;
    background: #e0f7fa;
    color: #0d9488;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.35;
}

.aloj-brisa-location {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Caja amenities — ligeramente translúcida para dejar ver el fondo */
.aloj-brisa-amenities-box {
    background: rgba(240, 253, 250, 0.82);
    border: 1px solid #99f6e4;
    padding: 12px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

.aloj-brisa-amenities-label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    color: #0f766e;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.aloj-brisa-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid rgba(20, 184, 166, 0.35);
    color: #0d9488;
    flex-shrink: 0;
}

.aloj-brisa-amenity-icon .material-symbols-outlined {
    font-size: 20px;
}

/* CTA píldora teal (mock Brisa) */
.aloj-brisa-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px 24px;
    border-radius: 999px;
    background: #14b8a6;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    position: relative;
    z-index: 1;
}

.aloj-brisa-cta:hover {
    background: #0d9488;
    color: #ffffff !important;
}

.aloj-brisa-cta:active {
    transform: scale(0.98);
}

.aloj-brisa-cta--compact {
    width: auto;
    flex-shrink: 0;
}

/* ── Arena & Luz (minimal) ───────────────────────────────────────── */

.aloj-card--theme-minimal {
    border: 1.5px solid #e8dfd4 !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 6px rgba(122, 92, 69, 0.04),
        0 14px 32px rgba(122, 92, 69, 0.1) !important;
    background: #ffffff !important;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.aloj-card--theme-minimal:hover {
    box-shadow:
        0 8px 12px rgba(122, 92, 69, 0.06),
        0 20px 40px rgba(122, 92, 69, 0.14) !important;
    transform: translateY(-2px);
}

.aloj-arena-premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(
        135deg,
        rgba(255, 252, 248, 0.97) 0%,
        rgba(250, 243, 232, 0.97) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #6b4f3a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px 5px 9px;
    border-radius: 999px;
    line-height: 1.2;
    border: 1px solid rgba(212, 184, 150, 0.65);
    box-shadow:
        0 2px 8px rgba(122, 92, 69, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.aloj-arena-premium-badge::before {
    content: '✦';
    color: #c9a227;
    font-size: 10px;
    line-height: 1;
    flex-shrink: 0;
}

.aloj-arena-rating-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.aloj-arena-rating-pill .material-symbols-outlined {
    font-size: 14px;
    color: #eab308;
}

.aloj-arena-rating-pill span:last-child {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
}

.aloj-arena-body {
    position: relative;
    flex: 1 1 auto;
    background: linear-gradient(180deg, #ffffff 0%, #fffcf8 100%);
    overflow: hidden;
}

.aloj-arena-body-inner {
    position: relative;
    z-index: 1;
}

/* Olas + palmera (mock PMS Arena & Luz) */
.aloj-arena-footer-bg {
    position: absolute;
    left: -1.25rem;
    right: -1.25rem;
    bottom: -1.25rem;
    height: 148px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 0%, rgba(255, 252, 248, 0.55) 28%, rgba(245, 239, 230, 0.92) 100%);
}

.aloj-arena-footer-bg::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 56' preserveAspectRatio='none'%3E%3Cpath fill='%23e8dfd4' fill-opacity='0.55' d='M0,28 C80,48 160,8 240,28 C300,42 360,18 400,32 L400,56 L0,56 Z'/%3E%3Cpath fill='%23d4b896' fill-opacity='0.35' d='M0,40 C100,52 200,24 300,40 C340,46 370,36 400,42 L400,56 L0,56 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.aloj-arena-footer-bg::after {
    content: '';
    position: absolute;
    right: 6%;
    bottom: 18px;
    width: 64px;
    height: 80px;
    opacity: 0.2;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath fill='%237a5c45' d='M58 78c-8-18-6-38 2-52 4-8 2-14-4-18-2 12-8 22-16 28 2-14 0-28-8-38 4 10 4 22 0 34-6-8-14-12-22-12 6 8 8 18 6 28-4-6-10-8-16-6 10 6 16 18 14 34h44z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.p-6.aloj-arena-body .aloj-arena-footer-bg,
.p-5.aloj-arena-body .aloj-arena-footer-bg {
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
}

.aloj-arena-footer-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.85;
}

.aloj-arena-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.aloj-arena-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #002660;
    letter-spacing: -0.015em;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .aloj-arena-title {
        font-size: 1.45rem;
    }
}

.aloj-arena-type-badge {
    flex-shrink: 0;
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: #b45309;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid rgba(251, 146, 60, 0.25);
}

.aloj-arena-location {
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}

.aloj-arena-amenities-box {
    background: rgba(250, 246, 240, 0.94);
    border: 1px solid #e8dfd4;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.aloj-arena-amenities-label {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aloj-arena-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid rgba(91, 138, 138, 0.28);
    color: #5b8a8a;
    flex-shrink: 0;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.aloj-card--theme-minimal:hover .aloj-arena-amenity-icon {
    border-color: rgba(91, 138, 138, 0.45);
    color: #4a7272;
}

.aloj-arena-amenity-icon .material-symbols-outlined {
    font-size: 18px;
}

.aloj-arena-price-block {
    position: relative;
    z-index: 1;
}

.aloj-arena-price-label {
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aloj-arena-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #002660;
    line-height: 1.1;
}

.aloj-arena-coins {
    font-size: 1rem;
    font-weight: 800;
    color: #a16207;
}

.aloj-arena-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b8a8a 0%, #4a7272 100%);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px -6px rgba(91, 138, 138, 0.45);
}

.aloj-arena-cta:hover {
    background: linear-gradient(135deg, #4a7272 0%, #3d5f5f 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 24px -6px rgba(91, 138, 138, 0.55);
}

.aloj-arena-cta:active {
    transform: scale(0.98);
}

.aloj-arena-cta--compact {
    width: auto;
    flex-shrink: 0;
    padding: 11px 22px;
    white-space: nowrap;
}

/* Rating en ficha detalle */
.aloj-arena-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 6px;
}

.aloj-arena-stars {
    color: #eab308;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.aloj-arena-score-inline {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
}

.aloj-arena-location-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #64748b;
}

/* ── Selva Esmeralda (dark) — #275052 · #7ea28c ───────────────── */

.aloj-card--theme-dark {
    border: 1.5px solid #7ea28c !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 8px rgba(39, 80, 82, 0.12),
        0 16px 36px rgba(39, 80, 82, 0.2) !important;
    background: #275052 !important;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.aloj-card--theme-dark:hover {
    box-shadow:
        0 8px 16px rgba(39, 80, 82, 0.16),
        0 22px 44px rgba(39, 80, 82, 0.26) !important;
    transform: translateY(-2px);
}

.aloj-selva-premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #7ea28c;
    color: #275052;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px 5px 9px;
    border-radius: 999px;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 10px rgba(39, 80, 82, 0.22);
}

.aloj-selva-premium-badge::before {
    content: '✦';
    color: #275052;
    font-size: 10px;
    line-height: 1;
}

.aloj-selva-rating-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.aloj-selva-rating-pill .material-symbols-outlined {
    font-size: 14px;
    color: #eab308;
}

.aloj-selva-rating-pill span:last-child {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
}

.aloj-selva-body {
    position: relative;
    flex: 1 1 auto;
    background: #275052;
    overflow: hidden;
    color: #ffffff;
}

.aloj-selva-body-inner {
    position: relative;
    z-index: 1;
}

.aloj-selva-foliage-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.35;
}

.aloj-selva-foliage-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(126, 162, 140, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 80%, rgba(39, 80, 82, 0.45) 0%, transparent 50%);
}

.aloj-selva-foliage-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    opacity: 0.55;
}

.p-6.aloj-selva-body .aloj-selva-foliage-bg,
.p-5.aloj-selva-body .aloj-selva-foliage-bg {
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    top: -0.5rem;
}

.aloj-selva-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.aloj-selva-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.015em;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .aloj-selva-title {
        font-size: 1.45rem;
    }
}

.aloj-selva-type-badge {
    flex-shrink: 0;
    background: rgba(126, 162, 140, 0.22);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid rgba(126, 162, 140, 0.5);
}

.aloj-selva-location {
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    color: #7ea28c;
    line-height: 1.45;
}

.aloj-selva-amenities-box {
    background: rgba(39, 80, 82, 0.55);
    border: 1px solid rgba(126, 162, 140, 0.45);
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.aloj-selva-amenities-label {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 800;
    color: #7ea28c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aloj-selva-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 9999px;
    background: #275052;
    border: 1px solid #7ea28c;
    color: #ffffff;
    flex-shrink: 0;
}

.aloj-selva-amenity-icon .material-symbols-outlined {
    font-size: 18px;
}

.aloj-selva-price-label {
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 800;
    color: #7ea28c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aloj-selva-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.aloj-selva-coins {
    font-size: 1rem;
    font-weight: 800;
    color: #7ea28c;
}

.aloj-selva-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: transparent;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    position: relative;
    z-index: 1;
}

.aloj-selva-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-color: #ffffff;
}

.aloj-selva-cta:active {
    transform: scale(0.98);
}

.aloj-selva-cta--compact {
    width: auto;
    flex-shrink: 0;
    padding: 11px 22px;
    white-space: nowrap;
    background: #7ea28c;
    color: #275052 !important;
    border: none;
    box-shadow: 0 6px 16px rgba(39, 80, 82, 0.2);
}

.aloj-selva-cta--compact:hover {
    background: color-mix(in srgb, #7ea28c 88%, white);
    color: #275052 !important;
}

.aloj-selva-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 6px;
}

.aloj-selva-stars {
    color: #eab308;
    font-size: 13px;
    letter-spacing: 1px;
}

.aloj-selva-score-inline {
    font-size: 13px;
    font-weight: 800;
    color: #7ea28c;
}

.aloj-selva-location-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #7ea28c;
}

/* ── Atardecer Caribe (dynamic) — mock PMS: #f4f5ef · #ede5ce · #5c4033 ─ */

.aloj-card--theme-dynamic {
    border: 1.5px solid #d4c4a8 !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 10px rgba(92, 64, 51, 0.1),
        0 18px 40px rgba(196, 165, 116, 0.22) !important;
    background: #fffdf9 !important;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.aloj-card--theme-dynamic:hover {
    box-shadow:
        0 10px 20px rgba(92, 64, 51, 0.12),
        0 24px 48px rgba(196, 165, 116, 0.28) !important;
    transform: translateY(-2px);
}

.aloj-atardecer-premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ede5ce;
    color: #5c4033;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px 5px 9px;
    border-radius: 6px;
    line-height: 1.2;
    border: 1px solid #d4c4a8;
    box-shadow: 0 2px 10px rgba(92, 64, 51, 0.15);
}

.aloj-atardecer-premium-badge::before {
    content: '✦';
    color: #c4a574;
    font-size: 10px;
    line-height: 1;
}

.aloj-atardecer-rating-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    padding: 5px 11px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    border: 1px solid #e2e8f0;
}

.aloj-atardecer-rating-pill .material-symbols-outlined {
    font-size: 14px;
    color: #eab308;
}

.aloj-atardecer-rating-pill span:last-child {
    font-size: 11px;
    font-weight: 800;
    color: #334155;
}

.aloj-atardecer-body {
    position: relative;
    flex: 1 1 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5ef 52%, #ebe3cf 100%);
    overflow: hidden;
}

.aloj-atardecer-body-inner {
    position: relative;
    z-index: 1;
}

.aloj-atardecer-footer-bg {
    position: absolute;
    left: -1.25rem;
    right: -1.25rem;
    bottom: 0;
    height: 150px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aloj-atardecer-footer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(244, 245, 239, 0.15) 0%, rgba(244, 245, 239, 0.35) 100%);
    z-index: 1;
}

.aloj-atardecer-footer-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.62;
}

.p-6.aloj-atardecer-body .aloj-atardecer-footer-bg,
.p-5.aloj-atardecer-body .aloj-atardecer-footer-bg {
    left: -1.5rem;
    right: -1.5rem;
    height: 165px;
}

.aloj-atardecer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.aloj-atardecer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #3d5278;
    margin: 0;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .aloj-atardecer-title {
        font-size: 1.5rem;
    }
}

.aloj-atardecer-type-badge {
    flex-shrink: 0;
    background: #ede5ce;
    color: #5c4033;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    line-height: 1.2;
    border: 1px solid #c4a574;
    box-shadow: 0 1px 4px rgba(92, 64, 51, 0.1);
}

.aloj-atardecer-location {
    font-size: 0.875rem;
    color: #6b5344;
    margin: 0 0 12px;
    line-height: 1.4;
}

.aloj-atardecer-amenities-box {
    background: rgba(237, 229, 206, 0.55);
    border: 1px solid #d4c4a8;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.aloj-atardecer-amenities-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5c4033;
    margin: 0 0 8px;
}

.aloj-atardecer-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ede5ce;
    border: 1px solid #d4c4a8;
    color: #5c4033;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.aloj-card--theme-dynamic:hover .aloj-atardecer-amenity-icon {
    border-color: #c4a574;
    background: #f5ecd8;
    transform: translateY(-1px);
}

.aloj-atardecer-amenity-icon .material-symbols-outlined {
    font-size: 18px;
}

.aloj-atardecer-price-block {
    margin-top: 4px;
}

.aloj-atardecer-price-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b7355;
    margin: 0 0 4px;
}

.aloj-atardecer-price {
    font-size: 1.65rem;
    font-weight: 800;
    color: #3d5278;
    line-height: 1.1;
}

.aloj-atardecer-coins {
    font-size: 1rem;
    font-weight: 700;
    color: #b45309;
}

.aloj-atardecer-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #ede5ce;
    color: #5c4033 !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #d4c4a8;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 6px 16px rgba(92, 64, 51, 0.14);
}

.aloj-atardecer-cta:hover {
    background: #e5d4b8;
    border-color: #c4a574;
    color: #5c4033 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(92, 64, 51, 0.18);
}
    transform: translateY(-1px);
}

.aloj-atardecer-cta:active {
    transform: translateY(0);
}

.aloj-atardecer-cta--compact {
    width: auto;
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.68rem;
}

.aloj-atardecer-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 6px;
}

.aloj-atardecer-stars {
    color: #eab308;
    font-size: 13px;
    letter-spacing: 1px;
}

.aloj-atardecer-score-inline {
    font-size: 13px;
    font-weight: 800;
    color: #3d5278;
}

.aloj-atardecer-location-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #6b5344;
}
