/* ==========================================
   CULTURA + EXPERIENCIAS — Premium dark
   ========================================== */

/* ===== CULTURA INTRO ===== */
.cultura-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}

.cultura-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cultura-intro p {
    color: var(--fv-text-on-dark-body);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    text-align: center;
    padding: 40px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fv-gradient-brand);
    opacity: 0.08;
    border-radius: inherit;
    pointer-events: none;
}

.highlight-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--fv-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.highlight-box p {
    color: var(--fv-text-on-dark-body);
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== EXPERIENCE CARDS (premium) ===== */
.exp-cards--premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.exp-card--premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.exp-card--premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
}

.exp-card--premium .exp-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.exp-card--premium .exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.exp-card--premium .exp-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 17, 40, 0.75);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.exp-card--premium .exp-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card--premium .exp-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.exp-card--premium .exp-location {
    font-size: 0.85rem;
    color: var(--fv-text-on-dark-body);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

.exp-card--premium .exp-card-body p {
    font-size: 0.9rem;
    color: var(--fv-text-on-dark-body);
    line-height: 1.6;
    flex: 1;
    opacity: 0.85;
}

.exp-card--premium .exp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.exp-card--premium .exp-feature {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 204, 0, 0.12);
    color: var(--fv-shared-yellow);
    border: 1px solid rgba(255, 204, 0, 0.15);
}

/* ===== EXPERIENCIAS PAGE ===== */
.exp-page-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.exp-page-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.exp-page-intro p {
    color: var(--fv-text-on-dark-body);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .exp-cards--premium {
        grid-template-columns: 1fr;
    }
    .exp-card--premium .exp-card-img {
        height: 160px;
    }
    .highlight-box {
        padding: 28px 20px;
    }
}
