/* Estilos Premium - Versión Grid 2x2 */
.premium-suites-section {
    background-color: #ffffff;
}

/* Encabezados */
.premium-label {
    font-family: 'Times New Roman', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    color: #b88b4a;
    display: inline-block;
    margin-bottom: 15px;
}

.premium-title {
    font-size: 48px;
    font-weight: 300;
    font-family: 'Times New Roman', serif;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.premium-divider {
    width: 80px;
    height: 2px;
    background-color: #b88b4a;
    margin: 0 auto 30px auto;
}

.premium-description {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    font-weight: 300;
}

/* Tarjeta Premium (Card) */
.premium-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Imagen de la tarjeta */
.premium-card-image {
    position: relative;
    overflow: hidden;
    background-color: #e8e0d4;
}

.premium-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .premium-card-image img {
    transform: scale(1.05);
}

/* Badges */
.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(184, 139, 74, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 14px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-badge-alt {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #d4af37;
    padding: 4px 14px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Contenido de la tarjeta */
.premium-card-content {
    padding: 28px 24px 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 26px;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    margin-bottom: 16px;
    color: #1e1e1e;
    letter-spacing: -0.3px;
}

/* Características (chips) */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.card-features span {
    background: #f5efe4;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #6b5b4a;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Descripción */
.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 22px;
    flex: 1;
}

/* Enlace de la tarjeta */
.card-link {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 12px;
    color: #b88b4a;
    border-bottom: 1px solid #b88b4a;
    padding-bottom: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.card-link:hover {
    color: #8b691b;
    letter-spacing: 2px;
    border-bottom-color: #8b691b;
}

/* Botón Principal */
.btn-premium {
    display: inline-block;
    background: transparent;
    border: 2px solid #2c2c2c;
    padding: 14px 42px;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-premium:hover {
    background: #2c2c2c;
    color: #f5efe4;
    border-color: #2c2c2c;
}

/* Hero Premium - House Section 1 */
.house-hero {
    position: relative;
    background-color: #0b0b0b;
    padding: 92px 0 70px 0;
    overflow: hidden;
}

.house-hero::before,
.house-hero::after {
    display: none;
}

.house-hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
}

.house-hero-title {
    max-width: 900px;
}

.house-hero-text {
    line-height: 1.85;
    max-width: 860px;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-title {
        font-size: 36px;
    }

    .premium-description {
        font-size: 16px;
    }

    .card-title {
        font-size: 22px;
    }

    .premium-card-image img {
        height: 240px;
    }

    .house-hero {
        padding: 78px 0 54px 0;
    }

    .house-hero-shell {
        padding: 0;
    }

    .house-hero-title {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .premium-card-content {
        padding: 20px;
    }

    .card-features span {
        font-size: 10px;
    }

    .house-hero {
        padding: 66px 0 42px 0;
    }

    .house-hero-shell {
        padding: 0;
    }

    .house-hero-text {
        line-height: 1.75;
    }
}