﻿.amenidad-card {
    background: linear-gradient(180deg, #eef8ff 0%, #e3f3ff 100%);
    border: 1px solid #c9e7ff;
    border-radius: 18px;
    padding: 18px;
    margin: 16px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.amenidad-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.amenidad-icon {
    background: white;
    color: #2196f3;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
}

.amenidad-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #114a75;
}

.amenidad-subtitle {
    font-size: 0.85rem;
    color: #5f87a5;
}

.amenidad-description {
    color: #35566f;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tarifa-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 14px 0;
    border-radius: 16px;
    border: 1px solid;
}

    .tarifa-card.gratis {
        background: #eefaf1;
        border-color: #b9e6c2;
    }

    .tarifa-card.pagada {
        background: #eef6ff;
        border-color: #cfe2ff;
    }

.tarifa-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.tarifa-card.gratis .tarifa-icon {
    color: #28a745;
}

.tarifa-card.pagada .tarifa-icon {
    color: #0d6efd;
}

.tarifa-label {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 2px;
}

.tarifa-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #243040;
}