@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --alm-crema:    #fde2d0;
    --alm-oliva:    #8b915c;
    --alm-verde-m:  #73ad42;
    --alm-verde-os: #3c441d;
    --alm-verde-b:  #2e563b;
    --alm-naranja:  #ec6425;
    --alm-cafe:     #632715;
    --alm-bg:       #fdf8f4;
    --alm-texto:    #1e1a14;
    --alm-gris:     #7a7060;
    --alm-borde:    #e8ddd0;
    --alm-blanco:   #ffffff;
    --alm-font:     'Montserrat', sans-serif;
    --alm-shadow:   0 4px 24px rgba(99,39,21,.10);
    --alm-shadow-lg:0 12px 48px rgba(99,39,21,.15);
}

/* ── Sección ── */
.alm-section {
    padding: 80px 0;
    font-family: var(--alm-font);
    background: transparent;
}

.alm-section-header {
    text-align: center;
    margin-bottom: 52px;
    padding: 0 20px;
}

.alm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--alm-naranja);
    margin-bottom: 14px;
}
.alm-eyebrow::before,
.alm-eyebrow::after { content: '◆'; font-size: 8px; }

.alm-section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--alm-verde-os);
    margin-bottom: 12px;
    line-height: 1.2;
}

.alm-section-sub {
    font-size: 15px;
    color: var(--alm-gris);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Carrusel ── */
.alm-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 32px;
}

.alm-carousel {
    display: flex;
    gap: 0;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* ── Tarjeta: 3 en PC ── */
.alm-card {
    flex: 0 0 33.333%;
    padding: 0 10px;
    background: transparent;
    box-sizing: border-box;
    font-family: var(--alm-font);
}
.alm-card-inner {
    background: var(--alm-blanco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--alm-shadow);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.alm-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--alm-shadow-lg);
}



/* ── Imagen ── */
.alm-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--alm-crema);
}
.alm-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.alm-card-inner:hover .alm-card-img img { transform: scale(1.05); }
.alm-card-img-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--alm-crema), var(--alm-oliva));
}

.alm-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--alm-naranja);
    color: #fff;
    font-family: var(--alm-font);
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 10px;
}

.alm-card-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(46,86,59,.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: var(--alm-font);
    font-size: 12px; font-weight: 500;
    padding: 8px 14px;
    display: flex; align-items: center; gap: 6px;
}

/* ── Body ── */
.alm-card-body { padding: 18px 20px 20px; }

.alm-card-title {
    font-size: 15px; font-weight: 700;
    color: var(--alm-verde-os);
    margin: 0 0 6px; line-height: 1.3;
}

.alm-card-precio {
    font-size: 13px; color: var(--alm-gris);
    margin: 0 0 14px;
}
.alm-card-precio strong {
    color: var(--alm-naranja);
    font-size: 16px; font-weight: 700;
}

.alm-card-actions {
    display: flex; align-items: center; gap: 14px;
}

.alm-btn-reservar {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--alm-naranja); color: #fff !important;
    font-family: var(--alm-font);
    font-size: 12px; font-weight: 600;
    padding: 10px 18px; border-radius: 10px;
    text-decoration: none !important; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .3px;
}
.alm-btn-reservar:hover { background: var(--alm-cafe); transform: translateY(-1px); }

.alm-btn-ver {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--alm-verde-b) !important;
    font-family: var(--alm-font);
    font-size: 12px; font-weight: 600;
    text-decoration: none !important;
    transition: color .2s;
}
.alm-btn-ver:hover { color: var(--alm-naranja) !important; }

/* ── Dots ── */
.alm-carousel-nav {
    display: flex; align-items: center;
    justify-content: center;
    margin-top: 28px;
}
.alm-dots { display: flex; gap: 8px; align-items: center; }
.alm-dot {
    width: 8px; height: 8px;
    border-radius: 10px; border: none;
    background: var(--alm-borde);
    cursor: pointer; padding: 0;
    transition: all .3s;
}
.alm-dot.active {
    background: var(--alm-naranja);
    width: 28px;
}

/* ── Tablet: 2 tarjetas ── */
@media (max-width: 900px) {
    .alm-card { flex: 0 0 50%; }
    .alm-section { padding: 60px 0; }
    .alm-section-title { font-size: 28px; }
}

/* ── Móvil: 1 tarjeta completa ── */
@media (max-width: 600px) {
    .alm-card { flex: 0 0 100%; padding: 0 16px; }
    .alm-section { padding: 40px 0; }
    .alm-section-header { margin-bottom: 32px; }
    .alm-section-title { font-size: 24px; }
    .alm-section-sub { font-size: 14px; }
    .alm-carousel-nav { margin-top: 20px; }
    .alm-btn-ver-todas { font-size: 12px; padding: 12px 24px; }
}



/* ── Botón ver todas las habitaciones ── */
.alm-btn-ver-todas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--alm-verde-os);
    color: var(--alm-verde-os) !important;
    background: transparent;
    font-family: var(--alm-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
}
.alm-btn-ver-todas:hover {
    background: var(--alm-verde-os);
    color: #fff !important;
    transform: translateY(-1px);
}
