/* ============================================
   sidebar-guest-card.css
   Tarjeta de invitado - Business Framework
   Bandera a la izquierda del nombre
   ============================================ */

.guest-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.guest-card__banner {
    height: 56px;
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.guest-card__body {
    padding: 0 14px 16px;
    margin-top: -24px;
}

/* Bandera: a la izquierda, parcialmente sobre el banner */
.guest-card__flag-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.guest-card__flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Texto del sitio */
.guest-card__text {
    margin-bottom: 14px;
}

.guest-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1b1f23;
    margin: 0 0 1px;
    line-height: 1.3;
}

.guest-card__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Botones */
.guest-card__actions {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.guest-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.guest-card__btn i {
    font-size: 0.62rem;
}

.guest-card__btn--primary {
    background: #0a66c2;
    color: #fff;
}

.guest-card__btn--primary:hover {
    background: #004182;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(10,102,194,0.3);
}

.guest-card__btn--secondary {
    background: transparent;
    color: #0a66c2;
    border: 1.5px solid #0a66c2;
}

.guest-card__btn--secondary:hover {
    background: #e8f1fc;
    color: #004182;
    border-color: #004182;
    text-decoration: none;
    transform: translateY(-1px);
}
