﻿.contacto-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow .2s ease, transform .2s ease;
}

    .contacto-card:hover {
        box-shadow: 0 4px 14px rgba(0,0,0,.08);
        transform: translateY(-2px);
    }

    .contacto-card .card-header {
        background-color: #9D2449;
        color: #fff;
        font-weight: 600;
        font-size: 1.7rem;
        padding: 1rem 1.25rem;
        border-bottom: none;
    }

        .contacto-card .card-header .estado {
            font-weight: 400;
            opacity: .9;
        }

        .contacto-card .card-header small {
            display: block;
            font-weight: 400;
            opacity: .85;
            font-size: 1.2rem;
            margin-top: .25rem;
        }

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: .9rem;
    font-size: 1.3rem;
    line-height: 1.5;
}

    .contacto-item:last-child {
        margin-bottom: 0;
    }

    .contacto-item .badge-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #f6e6ea;
        color: #9D2449;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .95rem;
        font-weight: 700;
    }

    .contacto-item a {
        color: #9D2449;
        text-decoration: none;
        font-weight: 500;
    }

        .contacto-item a:hover {
            text-decoration: underline;
        }

.estado-divider {
    border: none;
    border-top: 2px solid #9D2449;
    opacity: .25;
    margin: 2rem 0 1.5rem;
}

.badge-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f6e6ea;
    color: #9D2449;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
}

.badge-whatsapp {
    background-color: #dcf5e6;
    color: #25D366;
}