.barrio-pricing-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.barrio-pricing-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Card represents the outer frame containing the unified white background */
.barrio-card {
    background: #ffffff;
    border: 4px solid #001a57; /* Thinner border per request */
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures inner white content doesn't bleed */
}

/* Removed the margins so the white content touches the border seamlessly */
.barrio-inner-content {
    background: #ffffff;
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.barrio-title {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.barrio-subtitle {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 35px 0 20px 0;
}

.barrio-price-list, .barrio-packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.barrio-list-item, .barrio-pkg-item {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: space-between;
}

.barrio-item-label {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.barrio-item-dots {
    flex-grow: 1;
    border-bottom: 3px dotted #111111;
    margin: 0 10px 4px 10px;
}

.barrio-price {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.barrio-footer-text {
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: auto;
    padding-top: 20px;
}

/* Package specific styles */
.barrio-pkg-item {
    align-items: center;
}

.barrio-pkg-meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex-shrink: 1;
}

.barrio-pkg-bullet {
    width: 8px;
    height: 8px;
    background-color: #1b75bc;
    margin-top: 8px;
    flex-shrink: 0;
}

.barrio-pkg-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.font-bold {
    font-weight: bold;
}

.barrio-item-description {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .barrio-pricing-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .barrio-list-item, .barrio-pkg-item {
        align-items: flex-start;
    }
    .barrio-item-label {
        font-size: 16px;
        white-space: normal;
        word-break: break-word;
        flex-shrink: 1;
    }
    .barrio-item-dots {
        display: none; /* Hide dotted lines on mobile to give room for wrapping text */
    }
    .barrio-price {
        font-size: 18px;
        margin-left: 10px;
        flex-shrink: 0;
    }
    .barrio-inner-content {
        padding: 30px 15px;
    }
    .barrio-title {
        font-size: 22px;
    }
    .barrio-subtitle {
        font-size: 18px;
    }
}
