#card_contacto {
    background: var(--gradient);
    margin: 100px auto 20px;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    color: var(--background-color);

    a {
        color: var(--background-color);
        text-decoration: none;
    }

    p {
        margin-bottom: 1px;
    }

    #profile_image {
        width: 50%;
        max-width: 200px;
        margin: -100px auto 5px;
        border-radius: 50%;
        box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    }

    #name {
        font-family: AllianzNeo-Bold;
        font-size: 1.5em;
        margin: 0;
    }

    #botones {
        display: flex;
        flex-direction: column;

        * {
            text-decoration: none;
            background-color: var(--background-color);
            color: var(--dark-gray);
            height: 60px;
            width: 80%;
            margin: 10px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        *:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
    }

    #certificados {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;

        a {
            display: inline-block;
            width: 65%; /* Controla qué tan grandes se ven en la tarjeta */
            max-width: 280px;
            transition: transform 0.3s ease;
        }

        a:hover {
            transform: scale(1.03);
        }

        .cert_embed {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
    }
}
